这篇文章主要介绍了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]; }
Atas ialah kandungan terperinci php 获取文件大小的方法实例代码. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!