我正在尝试生成发票号码。它们应始终为4个数字,前导零,例如:
等等
使用str_pad()。
$invID = str_pad($invID, 4, '0', STR_PAD_LEFT);
使用sprintf
:http://php.net/function.sprintf
$number = 51;
$number = sprintf('%04d',$number);
print $number;
// outputs 0051
$number = 8051;
$number = sprintf('%04d',$number);
print $number;
// outputs 8051
使用printf
printf('%04d',$number);
试试这个:
$x = 1;
sprintf("%03d",$x);
echo $x;
如果你总是打印一些东西,printf()
工作正常,但sprintf()
给你更多的灵活性。如果您要使用此功能,$threshold
将为4。
/**
* Add leading zeros to a number, if necessary
*
* @var int $value The number to add leading zeros
* @var int $threshold Threshold for adding leading zeros (number of digits
* that will prevent the adding of additional zeros)
* @return string
*/
function add_leading_zero($value, $threshold = 2) {
return sprintf('%0' . $threshold . 's', $value);
}
add_leading_zero(1); // 01
add_leading_zero(5); // 05
add_leading_zero(100); // 100
add_leading_zero(1); // 001
add_leading_zero(5, 3); // 005
add_leading_zero(100, 3); // 100
add_leading_zero(1, 7); // 0000001
while ( strlen($invoice_number) < 4 ) $invoice_num = '0' . $invoice_num;
使用str_pad函数
//pad to left side of the input
$my_val=str_pad($num, 3, '0', STR_PAD_LEFT)
//pad to right side of the input
$my_val=str_pad($num, 3, '0', STR_PAD_RIGHT)
//pad to both side of the input
$my_val=str_pad($num, 3, '0', STR_PAD_BOTH)
其中$ num是你的号码