1.
<?php $number = 123; $txt = sprintf("带两位小数:%1\$.2f <br>不带小数:%1\$u",$number); echo $txt; ?>
1\$ 是什么意思?
2.
<?php $str1 = "Hello"; $str2 = "Hello world!"; echo sprintf("[%8s]",$str1)."<br>"; echo sprintf("[%-8s]",$str1)."<br>"; echo sprintf("[%8.8s]",$str2)."<br>"; ?>
这3个输出不是太懂。。
快懵了,谢谢大家解释一下。
freeeWilll