PHP數字前補0的內建函數sprintf 和number_format的用法

來源:互聯網
上載者:User
本篇文章主要介紹PHP數字前補0的內建函數sprintf 和number_format的用法,感興趣的朋友參考下,希望對大家有所協助。

很多時候我們需要對數字進行格式化,比如位元不足前面加0補足。用PHP可以很輕易實現,因為PHP內建了相關功能的函數。

<?php   //產生4位元,不足前面補0    $var=sprintf("%04d", 2);  echo $var;//結果為0002    echo date('Y_m_d', time()).'_'.sprintf('d', rand(0,99));  echo sprintf('%05s',444);//輸出5為字串,不足以0補充?>

sprintf()函數

1. 文法

sprintf(format,arg1,arg2,arg++)


參數 描述
format 必需。轉換格式。
arg1 必需。規定插到 format 字串中第一個 % 符號處的參數。
arg2 可選。規定插到 format 字串中第二個 % 符號處的參數。
arg++ 可選。規定插到 format 字串中第三、四等等 % 符號處的參數。

2. 說明

參數 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;  ?>


3. 格式數字 number_format()

<?php  $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?>

以上就是本文的全部內容,希望對大家的學習有所協助。


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.