From d6f8ddfdb3523b095ce63c11bec3d29e459ee094 Mon Sep 17 00:00:00 2001 From: Tankica Date: Tue, 19 Feb 2019 19:40:21 +0100 Subject: [PATCH] Add strtolower function (#31351) --- guide/english/php/functions/index.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/guide/english/php/functions/index.md b/guide/english/php/functions/index.md index 1bb934354b..80a18ff7ee 100644 --- a/guide/english/php/functions/index.md +++ b/guide/english/php/functions/index.md @@ -39,6 +39,13 @@ function makeItBIG($a_lot_of_names) { $a_lot_of_names = ['Homer', 'Marge', 'Bart', 'Maggy', 'Lisa']; var_dump(makeItBIG($a_lot_of_names)); ``` +## strtolower Function +The strtolower() function converts a string to lowercase. +``` + +``` #### More Information: