标签:
1. 格式
sprintf(format, arg1, arg2, arg3,..) 把格式化的字符串写入到变量中,加粗字体为必需参数。
2. 说明
替换是逐步执行的,按参数顺序,但是如果%符号多于参数个数,则实用占位符(由数字和\$组成),例子:
<?php
$number = 123;
$txt = sprintf("With 2 decimals: %1\$.2f<br />With no decimals: %1\$u",$number)
;
echo $txt;
?>
输出:
With 2 decimals: 123.00 With no decimals: 123
3. format参数中可用值:
官方解释见:http://www.w3school.com.cn/php/func_string_sprintf.asp
标签:
原文地址:http://www.cnblogs.com/tris/p/4186370.html