Add strtolower function (#31351)

This commit is contained in:
Tankica
2019-02-19 19:40:21 +01:00
committed by Randell Dawson
parent 341327281d
commit d6f8ddfdb3

View File

@ -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.
```
<?php
echo strtolower("Hello WORLD."); //hello world.
?>
```
#### More Information: