Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

strtolower php

strtolower ( string $string ) : string 
//Returns string with all alphabetic characters converted to lowercase.
$string = 'HELLO WORLD';
echo strtolower($string); //Output: 'hello world'
$string = 'HeLlO WoRlD';
echo strtolower($string); //Output: 'hello world'
Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #strtolower #php
ADD COMMENT
Topic
Name
4+4 =