Phone memory card cannot format PHP digital format

Source: Internet
Author: User
For example, Echo Number_format (285266237);
Can output 285,266,237
In addition, if you need to format the size of the file byte, the following methods can be drawn:
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
For example, Echo Number_format (285266237);
Can output 285,266,237
In addition, if you need to format the size of the file byte, the following methods can be drawn:
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

The above describes the mobile phone memory card can not format the PHP digital format, including the phone memory card can not be formatted content, I hope to be interested in PHP tutorial friends helpful.

  • 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.