PHP使用适合阅读的格式显示文件大小的方法
程序员文章站
2022-11-15 16:55:15
本文实例讲述了php使用适合阅读的格式显示文件大小的方法。分享给大家供大家参考。具体分析如下:
文件大小显示,例如 1.7k , 2.9m
代码如下:
复制代码 代码...
本文实例讲述了php使用适合阅读的格式显示文件大小的方法。分享给大家供大家参考。具体分析如下:
文件大小显示,例如 1.7k , 2.9m
代码如下:
复制代码 代码如下:
// a much better and accurate version can be found
// in aidan's php repository:
// http://aidanlister.com/repos/v/function.size_readable.php
/**
* returns a human readable filesize
*
* @author wesman20 (php.net)
* @author jonas john
* @version 0.3
* @link http://www.jonasjohn.de/snippets/php/readable-filesize.htm
*/
function humanreadablefilesize($size) {
// adapted from: http://www.php.net/manual/en/function.filesize.php
$mod = 1024;
$units = explode(' ','b kb mb gb tb pb');
for ($i = 0; $size > $mod; $i++) {
$size /= $mod;
}
return round($size, 2) . ' ' . $units[$i];
}
// in aidan's php repository:
// http://aidanlister.com/repos/v/function.size_readable.php
/**
* returns a human readable filesize
*
* @author wesman20 (php.net)
* @author jonas john
* @version 0.3
* @link http://www.jonasjohn.de/snippets/php/readable-filesize.htm
*/
function humanreadablefilesize($size) {
// adapted from: http://www.php.net/manual/en/function.filesize.php
$mod = 1024;
$units = explode(' ','b kb mb gb tb pb');
for ($i = 0; $size > $mod; $i++) {
$size /= $mod;
}
return round($size, 2) . ' ' . $units[$i];
}
希望本文所述对大家的php程序设计有所帮助。
上一篇: 顺治帝二十几岁就去世了,为何去世后能留下十四个孩子?
下一篇: PHP解析RSS的方法