本文整理匯總了PHP中Dir::size方法的典型用法代碼示例。如果您正苦於以下問題:PHP Dir::size方法的具體用法?PHP Dir::size怎麽用?PHP Dir::size使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Dir
的用法示例。
在下文中一共展示了Dir::size方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: size
/**
* Get directory size.
*
* <code>
* echo Dir::size('folder1');
* </code>
*
* @param string $path The path to directory.
* @return integer
*/
public static function size($path)
{
// Redefine vars
$path = (string) $path;
$total_size = 0;
$files = scandir($path);
$clean_path = rtrim($path, '/') . '/';
foreach ($files as $t) {
if ($t != "." && $t != "..") {
$current_file = $clean_path . $t;
if (is_dir($current_file)) {
$total_size += Dir::size($current_file);
} else {
$total_size += filesize($current_file);
}
}
}
// Return total size
return $total_size;
}
示例2: size
/**
* Return directory size (= sum of all filesizes in directory tree).
*
* @param string $path
* @return int
*/
public static function size($path)
{
$entries = Dir::entries($path);
$size = 0;
foreach ($entries as $entry) {
if (FSEntry::isDir($entry, false)) {
$size += Dir::size($entry);
} else {
if (FSEntry::isFile($entry, false)) {
$size += File::size($entry);
}
}
}
return $size;
}