php 格式化数字,位数不足时前面加0补足,本文提供了两种实现方法,分别用sprintf与number_format来实现。有需要的朋友,快来看看吧。
php格式化数字的例子。 <?php $var=sprintf("%04d", 2);//生成4位数,不足前面补0 echo $var;//结果为0002 ?> 一、字符串sprintf()函数 语法 sprintf(format,arg1,arg2,arg++)
參數 format 是轉換的格式,以百分比符號 ("%") 開始到轉換字元結束。下面的可能的 format 值: %% - 傳回百分比符號 %b - 二進制數 %c - 依照 ASCII 值的字符 %d - 帶符號十進制數 %e - 可續計數法(如 1.5e+3) %u - 無符號十進制數 %f - 浮點數(local settings aware) %F - 浮點數(not local settings aware) %o - 八進制數 %s - 字串 %x - 十六進制數(小寫字母) %X - 十六進位數(大寫字母) arg1, arg2, ++ 等參數將插入到主字串中的百分號 (%) 符號處。該函數是逐步執行的。在第一個 % 符號中,插入 arg1,在第二個 % 符號處,插入 arg2,依此類推。 例: <?php $number = 123; $txt = sprintf("%f",$number); echo $txt; ?> 二、格式數字函數 number_format() 例: <?php //number_format 格式化数字 $number = 1234.56; // english notation (default) $english_format_number = number_format($number); // 1,235 // French notation $nombre_format_francais = number_format($number, 2, ',', ' '); // 1 234,56 $number = 1234.5678; // english notation without thousands seperator $english_format_number = number_format($number, 2, '.', ''); // 1234.57 //by http://bbs.it-home.org ?> |