Definition:
function wp_convert_bytes_to_hr( $bytes ) {}
Parameters
- unknown_type $bytes
Source code
function wp_convert_bytes_to_hr( $bytes ) {
$units = array( 0 => 'B', 1 => 'kB', 2 => 'MB', 3 => 'GB' );
$log = log( $bytes, 1024 );
$power = (int) $log;
$size = pow(1024, $log - $power);
return $size . $units[$power];
}
3489

February 12, 2011 


No comments yet... Be the first to leave a reply!