PHP strtolower() Function


The strtolower() function is used to convert the string to lowercase.

Syntax
strtolower(string)
Parameters
  • String - (Required) Specify the string to convert.
Example
<?php
    echo strtolower("Good MOrNiNG.");
?>

Output

good morning.	

Prev Next