Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php lowercase function

# for lowercase use this function
# strtolower();
<?php
$string = "Hello World";
$string = strtolower($string);
echo $string; 
# output will be like this: "hello world"
?>
Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #php #lowercase #function
ADD COMMENT
Topic
Name
6+4 =