html to lowercase php code example
Example 1: convert string to lowercase in php
/* strtolower() function converts string to lowercase. */
<?php
echo strtolower("Hello WORLD 123");
?>
// Output:hello world 123
Example 2: php convert to lowercase
<?php
echo strtolower("Convert THIS TEXT ALL TO LOWER CASE");
?>