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: