What is use of strtolower() in php ?
The strtolower() function is used for converting a string to lowercase.
Syntax of strtolower() function:
strtolower(string)
string is a compulsory parameter
You can see below example of ucfirst() function in php.
<?php
//here call strtolower() for cconverting string
echo strtolower("WELL DONE");
?>
output will come of above example
Well done
0 Comment(s)