PHP methods for displaying file sizes in a format that is suitable for reading _php tutorials

Source: Internet
Author: User

How PHP Displays file sizes in a format that is suitable for reading


This article mainly introduces PHP using suitable for reading format display file size method, example analysis of PHP implementation of data conversion skills, with a certain reference value, the need for friends can refer to the next

This example describes how PHP displays file sizes in a format that is appropriate for reading. Share to everyone for your reference. The specific analysis is as follows:

File size display, e.g. 1.7K, 2.9M
The code is as follows:

The code is as follows:

A much better and accurate version can be found
In Aidan ' s PHP Repository:
http://aidanlister.com/repos/v/function.size_readable.php
/**
* Returns a human readable filesize
*
* @author Wesman20 (php.net)
* @author Jonas John
* @version 0.3
* @link http://www.jonasjohn.de/snippets/php/readable-filesize.htm
*/
function Humanreadablefilesize ($size) {
Adapted from:http://www.php.net/manual/en/function.filesize.php
$mod = 1024;
$units = Explode (', ' B KB MB GB TB PB ');
for ($i = 0; $size > $mod; $i + +) {
$size/= $mod;
}
Return round ($size, 2). ' ' . $units [$i];
}

I hope this article is helpful to everyone's PHP programming.

http://www.bkjia.com/PHPjc/963989.html www.bkjia.com true http://www.bkjia.com/PHPjc/963989.html techarticle how PHP Displays file sizes in a format that is appropriate for reading this article mainly introduces the method of using PHP to display the file size in a suitable reading format, and analyzes the data conversion of PHP by example .

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