str_to_lower 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: strtolower php
strtolower ( string $string ) : string
$string = 'HELLO WORLD';
echo strtolower($string);
$string = 'HeLlO WoRlD';
echo strtolower($string);
Example 3: how tdo you convert a stringto lowercase in php
strtolower ( string $string ) : string
$string = 'HELLO WORLD';
echo strtolower($string);