Result Size:
625 x 571
tryphp_func_string_sprintf.php:
<!DOCTYPE html> <html> <body> <?php $number = 9; $str = "Beijing"; $txt = sprintf("There are %u million bicycles in %s.",$number,$str); echo $txt; ?> </body> </html>
There are 9 million bicycles in Beijing.