我正在創建一個以1001開頭的遞增數字。如果數字變爲1001,1002,1003 ...當它達到10時,它將被格式化爲1010還是10010?我需要它只是去爲了和是1010,當它達到100,1100用str_pad(PHP)增加數字
$prefix = "1"; // update the prefix here
$number = 1;
$number++;
$unique = str_pad($number, 3, "0", STR_PAD_LEFT);
$unique = $prefix . $unique;
print_r($unique);
爲什麼不從1001開始?例如。你的用例是什麼? –
我不明白你在問什麼 – sjagr