<!DOCTYPE html>
<html>
<body>
<?php
$number = 123;
$txt = sprintf("带有两位小数:%1\$.2f
<br>不带小数:%1\$u",$number);
echo $txt;
?>
</body>
</html>