Skip to content

Instantly share code, notes, and snippets.

@JacobHsu
Created November 12, 2015 05:44
Show Gist options
  • Save JacobHsu/efaf03b58d2a8b608e2c to your computer and use it in GitHub Desktop.
Save JacobHsu/efaf03b58d2a8b608e2c to your computer and use it in GitHub Desktop.
PHP sprintf()
<?php
$number = 2;
$str = "Shanghai";
$txt = sprintf("There are %u million cars in %s.",$number,$str);
echo $txt;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment