PHP and C # code for formatting file sizes separately _ PHP Tutorial

Source: Internet
Author: User
PHP and C # format the file size code respectively. PHP: Copy the code as follows: functionformat ($ size) {$ sizetextarray (B, KB, MB, GB, TB, PB, EB, ZB, YB ); returnround ($ sizepow (1024, ($ ifloor (l PHP version:

The code is as follows:


Function format ($ size)
{
$ Sizetext = array ("B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB ", "YB ");
Return round ($ size/pow (1024, ($ I = floor (log ($ size, 1024), 2). $ sizetext [$ I];
}


C:

The code is as follows:


Public string formatSize (long size)
{
If (size = 0) return "0 ";
String [] sizetext = new string [] {"B", "KB", "MB", "GB", "TB", "PB "};
Int I = (int) Math. Floor (Math. Log (size, 1024 ));
Return Math. Round (size/Math. Pow (1024, I), 2). ToString () + sizetext [I];
}

Http://www.bkjia.com/PHPjc/323346.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/323346.htmlTechArticlePHP: Code: function format ($ size) {$ sizetext = array ("B", "KB", "MB", "GB", "TB ", "PB", "EB", "ZB", "YB"); return round ($ size/pow (1024, ($ I = floor (l...

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.