PHP文件大小的MB / KB转换

如何将PHP的filesize()函数的输出转换为MegaBytes,KiloBytes等格式?

喜欢:

  • 如果大小小于1 MB,请以KB为单位显示大小
  • 如果在1 MB – 1 GB之间,则以MB显示
  • 如果它更大 – 以GB

这是一个示例:

<?php // Snippet from PHP Share: http://www.phpshare.org function formatSizeUnits($bytes) { if ($bytes >= 1073741824) { $bytes = number_format($bytes / 1073741824, 2) . ' GB'; } elseif ($bytes >= 1048576) { $bytes = number_format($bytes / 1048576, 2) . ' MB'; } elseif ($bytes >= 1024) { $bytes = number_format($bytes / 1024, 2) . ' KB'; } elseif ($bytes > 1) { $bytes = $bytes . ' bytes'; } elseif ($bytes == 1) { $bytes = $bytes . ' byte'; } else { $bytes = '0 bytes'; } return $bytes; } ?> 

更好的是我从一个插件创build的版本,我发现:

 function filesize_formatted($path) { $size = filesize($path); $units = array( 'B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'); $power = $size > 0 ? floor(log($size, 1024)) : 0; return number_format($size / pow(1024, $power), 2, '.', ',') . ' ' . $units[$power]; } 

请注意filesize()doc

因为PHP的整数types是有符号的,许多平台使用32位整数,所以某些文件系统函数可能会返回大于2GB的文件的意外结果

更清洁的方法:

 function Size($path) { $bytes = sprintf('%u', filesize($path)); if ($bytes > 0) { $unit = intval(log($bytes, 1024)); $units = array('B', 'KB', 'MB', 'GB'); if (array_key_exists($unit, $units) === true) { return sprintf('%d %s', $bytes / pow(1024, $unit), $units[$unit]); } } return $bytes; } 

我认为这是一个更好的方法。 简单而直接。

 public function sizeFilter( $bytes ) { $label = array( 'B', 'KB', 'MB', 'GB', 'TB', 'PB' ); for( $i = 0; $bytes >= 1024 && $i < ( count( $label ) -1 ); $bytes /= 1024, $i++ ); return( round( $bytes, 2 ) . " " . $label[$i] ); } 

这是基于@ adnan的伟大答案。

变化:

  • 添加了内部的filesize()调用
  • 回到早期的风格
  • 节省一个字节的连接

而且您仍然可以将函数中的filesize()调出,以获得纯字节格式化函数。 但是这个工作在一个文件上。


 /** * Formats filesize in human readable way. * * @param file $file * @return string Formatted Filesize, eg "113.24 MB". */ function filesize_formatted($file) { $bytes = filesize($file); if ($bytes >= 1073741824) { return number_format($bytes / 1073741824, 2) . ' GB'; } elseif ($bytes >= 1048576) { return number_format($bytes / 1048576, 2) . ' MB'; } elseif ($bytes >= 1024) { return number_format($bytes / 1024, 2) . ' KB'; } elseif ($bytes > 1) { return $bytes . ' bytes'; } elseif ($bytes == 1) { return '1 byte'; } else { return '0 bytes'; } } 

这将是一个更清洁的实现:

 function size2Byte($size) { $units = array('KB', 'MB', 'GB', 'TB'); $currUnit = ''; while (count($units) > 0 && $size > 1024) { $currUnit = array_shift($units); $size /= 1024; } return ($size | 0) . $currUnit; } 

一个完整的例子。

 <?php $units = explode(' ','B KB MB GB TB PB'); echo("<html><body>"); echo('file size: ' . format_size(filesize("example.txt"))); echo("</body></html>"); function format_size($size) { $mod = 1024; for ($i = 0; $size > $mod; $i++) { $size /= $mod; } $endIndex = strpos($size, ".")+3; return substr( $size, 0, $endIndex).' '.$units[$i]; } ?> 
 function calcSize($size,$accuracy=2) { $units = array('b','Kb','Mb','Gb'); foreach($units as $n=>$u) { $div = pow(1024,$n); if($size > $div) $output = number_format($size/$div,$accuracy).$u; } return $output; } 
 function getNiceFileSize($file, $digits = 2){ if (is_file($file)) { $filePath = $file; if (!realpath($filePath)) { $filePath = $_SERVER["DOCUMENT_ROOT"] . $filePath; } $fileSize = filesize($filePath); $sizes = array("TB", "GB", "MB", "KB", "B"); $total = count($sizes); while ($total-- && $fileSize > 1024) { $fileSize /= 1024; } return round($fileSize, $digits) . " " . $sizes[$total]; } return false; } 
 //Get the size in bytes function calculateFileSize($size) { $sizes = ['B', 'KB', 'MB', 'GB']; $count=0; if ($size < 1024) { return $size . " " . $sizes[$count]; } else{ while ($size>1024){ $size=round($size/1024,2); $count++; } return $size . " " . $sizes[$count]; } }