Digital Formatting _php Tutorial

Source: Internet
Author: User
Previously used to use their own definition of the number format method, the original PHP has always had a number format function, hehe ~
For example, Echo Number_format (285266237);
Can output 285,266,237
In addition, if you need to format file byte size, the following methods can be used for reference:
function Byte_format ($input, $dec =0)
{
$prefix _arr = Array ("B", "K", "M", "G", "T");
$value = Round ($input, $DEC);
$i = 0;
while ($value >1024)
{
$value/= 1024;
$i;
}
$return _str = Round ($value, $dec). $prefix _arr[$i];
return $return _str;
}
echo Byte_format (285266237);
Display result is 272M

http://www.bkjia.com/PHPjc/631931.html www.bkjia.com true http://www.bkjia.com/PHPjc/631931.html techarticle previously used to use their own definition of the number format method, the original PHP has always had a number format function, hehe ~ For example, Echo Number_format (285266237); can output 285,26 ...

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    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.