這篇文章主要介紹了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 取得檔案大小的方法實例程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!