Skip to content

Instantly share code, notes, and snippets.

@skvggor
Created April 10, 2012 00:41
Show Gist options
  • Save skvggor/2347648 to your computer and use it in GitHub Desktop.
Save skvggor/2347648 to your computer and use it in GitHub Desktop.
ucfirst explanation
<?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