Convert bytes to MB, GB, TB and PB with PHP
August 11, 2011A simple PHP function to convert bytes to the rounded megabyte, gigabyte, terabyte, and petabyte amounts.
Note that petabytes are not currently supported, not because of the function, but because of the maximum signed integer size in PHP.
P.S. This page has a very, very, very long URL.
Download Original
No comments yet! Be the first!
<?PHP function bytes2English($filesize) { if ($filesize<1048676) if ($filesize>=1048576 && $filesize<1073741824) if ($filesize>=1073741824 && $filesize<1099511627776) if ($filesize>=1099511627776) if ($filesize>=1125899906842624) //Currently, PB won't show due to PHP limitations } echo bytes2english(59417665); ?>

Facebook
LinkedIn