PHP sprintf() 函数 把百分号(%)符号替换成一个作为参数进行传递的变量: // PHP的sprintf函数演示:生成3位数字,不足三位前面补0 for ($i=1; $i <= 10; $i++) { echo sprintf("%03d",$i).'<br>'; }