Skip to content

Instantly share code, notes, and snippets.

@hilyjiang
Created June 5, 2013 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hilyjiang/5712650 to your computer and use it in GitHub Desktop.
Save hilyjiang/5712650 to your computer and use it in GitHub Desktop.
显示Human Recognize的存储大小
<?php
function convert_size_val($size){
$unit = array('b', 'kb', 'mb', 'gb', 'tb', 'pb');
return @round($size / pow(1024, ($i = floor(log($size, 1024)))), 2) . ' ' . $unit[$i];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment