|
|
strtolower to from upper case letters to lower case lettersstrtolower() function in PHP will convert all the upper case characters present inside a string to lower case. Inside the string only the alphabets will be changed and other characters will remain same.
$my_val=strtolower($my_val);
Here is an example code.
$my_str="Hello Please Visit PLUS2NET.COM";
$my_str=strtolower($my_str);
echo $my_str;
Here is the output
hello please visit plus2net.com
You can read strtoupper to covert all letter to upper case
|
| |
| |
|
|
|
|
|