如何更改显示的位数

时间:2014-11-26 08:59:23

标签: php mysql

大家都很快。

如何在sql查询或php中编写以更改显示的位数。

例如我使用这个$值[' ClientId']这是一个AI主键,我知道在我到达10之前它会看起来像1,2,3,4 ...... 。,10,但我希望它看起来像01,02,03甚至001。

可能是一个非常简单的但我可以

蚂蚁找到它。

2 个答案:

答案 0 :(得分:1)

使用str_pad功能: http://php.net/manual/en/function.str-pad.php

str_pad( $number, $padLength, $padWith, STR_PAD_LEFT );

str_pad( "1", 4, "0", STR_PAD_LEFT ); // gives 0001

答案 1 :(得分:1)

$input=1; //if you need 01 instated of 1 then try 
echo sprintf("%02d", $input);

  $input=1; //if you need 001 instated of 1 then try 
echo sprintf("%03d", $input);

请阅读此sprintf