This article mainly introduces the PHP method for folder operations. Interested friends can refer to it. I hope it will be helpful to everyone.
The example in this article describes the usage of the PHP function to obtain the folder size, as follows:
<?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('需要获取大小的目录')); ?>
Summary: The above is the entire content of this article, I hope it can be helpful to everyone Learning helps.
Related recommendations:
php method to implement skin change based on cookies
php targets file operations and characters Methods of string encryption
php for deleting, converting, grouping, and sorting arrays
The above is the detailed content of PHP methods for folder operations. For more information, please follow other related articles on the PHP Chinese website!