<!DOCTYPE html>
<html>
<body>
<?php
$number = 9;
$str = "北京";
printf("在%s有 %u 百万辆自行车。",$str,$number);
?>
</body>
</html>