How To Make String Into Lower Case Letters Using PHP Code
- Forums
- PHP
- How To Make String Into Lower Case Letters Using PHP Code
to make your letters in a string to lower case you can use the strtolower() php function this is a great way to make caps letter into smaller letters [1096], Last Updated: Sat May 18, 2024
wallpaperama
Sat Feb 23, 2008
0 Comments
2849 Visits
to make your letters in a string to lower case you can use the strtolower() php function
$string = "HIGH CAPS";
echo "strtolower($string)";
OUTPUT: high caps
this is a great way to make caps letter into smaller letters