PHP Get file size and convert GB,MB,KB code

Source: Internet
Author: User
This is a PHP program to get the size of the file and the file according to the size of the file display GB,MB,KB code code is very smart code, the code is as follows:

function Sizecount ($filesize) {

if ($filesize >= 1073741824) {

$filesize = Round ($filesize/1073741824 * 100)/100. ' GB ';

} elseif ($filesize >= 1048576) {

$filesize = Round ($filesize/1048576 * 100)/100. ' MB ';

} elseif ($filesize >= 1024) {

$filesize = Round ($filesize/1024 * 100)/100. ' KB ';

} else {//Open source code phpfensi.com

$filesize = $filesize. ' bytes ';

}

return $filesize;

}

Application method

$path = './phpfensi.com/logo.gif ';

Echo Sizecount (FileSize ($path));

  • Related Article

    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.