PHP 数字前面补零 固定位数补0

可以使用php内置函数sprintf() 函数把字符串填充为新的长度

$str = 2;
$newStr= sprintf('%05s', $str);
echo $str;

输出结果为  000002;

你可能感兴趣的:(php,html,php)