
how tdo you convert a stringto lowercase in php example
how tdo you convert a stringto lowercase in php example in php
/* strtolower() function converts string to lowercase. */
<?php
echo strtolower("Hello WORLD 123");
?>
// Output:hello world 123