php 获取文件大小的方法实例代码
程序员文章站
2022-04-08 13:28:33
...
这篇文章主要介绍了php获取文件大小的方法,需要的朋友可以参考下
/** * Returns a human readable filesize */ function HumanReadableFilesize($size) { $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 获取文件大小的方法实例代码的详细内容,更多请关注其它相关文章!
上一篇: 《MySQL必知必会》读书笔记_2
下一篇: MySQL5.0.16的乱码问题解决方案