Blog : PHP strtolower() Function
PHP strtolower() Function
--------------------------------------------------------------------------------
Complete PHP String Reference
--------------------------------------------------------------------------------
Definition and Usage
The strtolower() function converts a string to lowercase.
Syntax
strtolower(string)
Parameter Description
string Required. Specifies the string to convert
--------------------------------------------------------------------------------
Example
echo strtolower("Hello WORLD.");
?>
The output of the code above will be:
hello world.