Return to Snippet

Revision: 17018
at August 20, 2009 22:09 by radarseven


Initial Code
<?php
    $string = "i like to program in PHP";
    $a = strtoupper($string);
    $b = strtolower($string);
    $c = ucfirst($string);
    $d = ucwords($string);
    $e = ucwords(strtolower($string));
?>

Initial URL

                                

Initial Description

                                

Initial Title
PHP String Case Manipulation

Initial Tags
text

Initial Language
PHP