Created
April 10, 2012 00:41
-
-
Save skvggor/2347648 to your computer and use it in GitHub Desktop.
ucfirst explanation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$name = 'marcos'; | |
$last_name = 'garcia'; | |
echo 'My name is', $name, $last_name; | |
echo 'My name is', ucfirst($name), ucfirst($last_name); | |
// Resultado #0: My name is marcos garcia | |
// Resultado #1: My name is Marcos Garcia | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment