format bytes to kB, MB, GB …
How to convert bytes to Kilobytes, megabytes and so on?.
function format_bytes($size, $precision = 2){
$base = log($size) / log(1024);
$suffixes = array('', 'kB', 'MB', 'GB', 'TB' , 'PB' , 'EB');
return round(pow(1024, $base - floor($base)), $precision) . $suffixes[floor($base)];
}
how to use it
echo format_bytes(888888);

imran 9:11 pm on August 27, 2010 Permalink |
that’s very good script
I used this.
it’s much …………
Abd Karim 2:46 pm on September 2, 2010 Permalink |
nice and useful coding..TQ