Skip to content

Instantly share code, notes, and snippets.

@jrvaja
Created July 14, 2012 02:23
Show Gist options
  • Save jrvaja/3108860 to your computer and use it in GitHub Desktop.
Save jrvaja/3108860 to your computer and use it in GitHub Desktop.
Jeff: PrintF-Sscanf
/*
printf
sprintf
sscanf
*/
// printf("This post was made on %s %s, %d", 'June', '7th', '2012');
//$posted = sprintf("This post was made on %s %s, %d", 'June', '7th', '2012');
//echo $posted;
//list($month, $day, $year) = sscanf("June 7th, 2012", "%s %[^,], %d");
//sscanf("June 7th, 2012", "%s %[^,], %d", $month, $day, $year);
//echo $year;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment