Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how tdo you convert a stringto lowercase in php

strtolower ( string $string ) : string 
//Returns string with all alphabetic characters converted to lowercase.
$string = 'HELLO WORLD';
echo strtolower($string); //Output: 'hello world'
 
PREVIOUS NEXT
Tagged: #tdo #convert #stringto #lowercase #php
ADD COMMENT
Topic
Name
1+8 =