On January 23, 2010, In PHP, by pankaj_eng
How to use String function in PHP and what are the string function.
<?php
$first =”Common PHP String Function”;
$second=”How to use String Function in PHP”;
$third = $first;
$third.= $second;
?>
PHP String Function : Lower Case
Convert string to lower case.
<?php
echo strtolower($third);
?>
PHP String Function : Upper Case
Convert String to upper case.
<?php
echo strtoupper($third);
?>
PHP String Function : Upper Case First Letter
Upper case first [...]
