Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

convert string to lowercase in php

/* The strtolower() function converts a string to lowercase.
Convert all characters to lowercase.*/
<?php
echo strtolower("Hello WORLD.");
?>
// Output: hello world.
Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #convert #string #lowercase #php
ADD COMMENT
Topic
Name
7+2 =