本文整理汇总了PHP中SC_Utils::sfGetDirSize方法的典型用法代码示例。如果您正苦于以下问题:PHP SC_Utils::sfGetDirSize方法的具体用法?PHP SC_Utils::sfGetDirSize怎么用?PHP SC_Utils::sfGetDirSize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SC_Utils
的用法示例。
在下文中一共展示了SC_Utils::sfGetDirSize方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: sfGetDirSize
function sfGetDirSize($dir)
{
if (file_exists($dir)) {
// ディレクトリの場合下層ファイルの総量を取得
if (is_dir($dir)) {
$handle = opendir($dir);
while ($file = readdir($handle)) {
// 行末の/を取り除く
$dir = ereg_replace("/\$", "", $dir);
$path = $dir . "/" . $file;
if ($file != '..' && $file != '.' && !is_dir($path)) {
$bytes += filesize($path);
} else {
if (is_dir($path) && $file != '..' && $file != '.') {
// 下層ファイルのバイト数を取得する為、再帰的に呼び出す。
$bytes += SC_Utils::sfGetDirSize($path);
}
}
}
} else {
// ファイルの場合
$bytes = filesize($dir);
}
}
// ディレクトリ(ファイル)が存在しない場合は0byteを返す
if ($bytes == "") {
$bytes = 0;
}
return $bytes;
}