本篇主要介紹php針對資料夾操作的方法,有興趣的朋友參考下,希望對大家有幫助。
本文實例講述了PHP獲取資料夾大小函數用法,具體如下:
<?php // 获取文件夹大小 function getDirSize($dir) { $handle = opendir($dir); while (false!==($FolderOrFile = readdir($handle))) { if($FolderOrFile != "." && $FolderOrFile != "..") { if(is_dir("$dir/$FolderOrFile")) { $sizeResult += getDirSize("$dir/$FolderOrFile"); } else { $sizeResult += filesize("$dir/$FolderOrFile"); } } } closedir($handle); return $sizeResult; } // 单位自动转换函数 function getRealSize($size) { $kb = 1024; // Kilobyte $mb = 1024 * $kb; // Megabyte $gb = 1024 * $mb; // Gigabyte $tb = 1024 * $gb; // Terabyte if($size < $kb) { return $size." B"; } else if($size < $mb) { return round($size/$kb,2)." KB"; } else if($size < $gb) { return round($size/$mb,2)." MB"; } else if($size < $tb) { return round($size/$gb,2)." GB"; } else { return round($size/$tb,2)." TB"; } } echo getRealSize(getDirSize('需要获取大小的目录')); ?>
總結:以上就是本篇的全部內容,希望能對大家的學習有所幫助。
相關推薦:
#以上是php針對資料夾操作的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!