PHP » Strings » strtolower()

Syntax:
string strtolower(string s)
s
The string.

Converts a string to lower case.

strtolower() returns a new string where the characters of the input string are converted to lower case.

Examples

Code:
<?php

print strtolower("This Is An Example Line");

?>
Output:
this is an example line
Explanation:

strtolower() is used to convert a string to all lower case.

See Also: