php中的number_format

时间:2012-08-07 07:43:59

标签: php number-formatting

我有:

echo number_format( $uti->check_price( $rowscatpr ) , 0, '', '.' );

格式: 333.333.333

我想要格式: 0333.333.333

是否有PHP功能?

2 个答案:

答案 0 :(得分:2)

$input = number_format( $uti->check_price( $rowscatpr ) , 0, '', '.' );
echo str_pad($input, strlen($input)+1, "0", STR_PAD_LEFT); //0333.333.333

str_pad - 用另一个字符串将字符串填充到一定长度。

strlen - 返回给定字符串的长度。

答案 1 :(得分:0)

$v=number_format( $uti->check_price( $rowscatpr ) , 0, '', '.' );

echo str_pad($v,strlen($v)+1,'0',STR_PAD_LEFT);