Created
November 12, 2015 05:44
-
-
Save JacobHsu/efaf03b58d2a8b608e2c to your computer and use it in GitHub Desktop.
PHP sprintf()
This file contains 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 | |
$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