Add strtolower function (#31351)
This commit is contained in:
@ -39,6 +39,13 @@ function makeItBIG($a_lot_of_names) {
|
|||||||
$a_lot_of_names = ['Homer', 'Marge', 'Bart', 'Maggy', 'Lisa'];
|
$a_lot_of_names = ['Homer', 'Marge', 'Bart', 'Maggy', 'Lisa'];
|
||||||
var_dump(makeItBIG($a_lot_of_names));
|
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:
|
#### More Information:
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user