Home  >  Article  >  php教程  >  php查找指定目录指定大小的文件程序

php查找指定目录指定大小的文件程序

WBOY
WBOYOriginal
2016-05-25 16:45:59738browse

php查找文件大小的原理是遍历目录然后再利用filesize来计算文件大小,然后我们再加一判断就可以了,下面整理了一些例子。

我们先来看遍历目录

<?php
function tree($directory) {
    $mydir = dir($directory);
    echo "<ul>n";
    while ($file = $mydir->read()) {
        if ((is_dir("$directory/$file")) AND ($file != ".") AND ($file != "..")) {
            echo "<li><font color="
            //ff00cc"><b>$file</b></font></li>n";
            tree("$directory/$file");
        } else echo "<li>$file</li>n";
    }
    echo "</ul>n";
    $mydir->close();
}
//开始运行
echo "<h2>目录为粉红色</h2><br>n";
tree("./phprm");
?>

这样只是把所有目录下的文件显示了,但我们要判断大小需加上round(filesize($cpath)/1024,1)函数了,这样我们获取大小之后就可以显示文件大小了。

<?php
header("Content-Type:text/html;charset=gbk");
set_time_limit(0);
$dirpath = dirname(__FILE__);
//bytes
$limitByte = 1024 * 110;
//这里改成你合适的查找文件最低大小,单位为字节。1024*100表示 1024*100字节,即100KB
$arrRes = $arrTmp = array();
showMaxFile($dirpath, $limitByte);
function showMaxFile($path, $limitByte) {
    global $arrRes;
    $h = opendir($path);
    if ($h) {
        while (false !== ($file = readdir($h))) {
            if ($file != &#39;.&#39; && $file != &#39;..&#39;) {
                $cpath = $path . &#39;/&#39; . $file;
                if (is_dir($cpath)) {
                    showMaxFile($cpath, $limitByte);
                } else {
                    if (filesize($cpath) > $limitByte) {
                        $arrRes[] = array(
                            $cpath,
                            round(filesize($cpath) / 1024, 1)
                        );
                        //echo "<p>{$cpath}<br />".(filesize($cpath) / 1024)."KB</p>";
                        
                    }
                }
            }
        }
    }
    closedir($h);
}
foreach ($arrRes as $k => $v) {
    $arrTmp[$k] = $v[1];
}
arsort($arrTmp);
foreach ($arrTmp as $k => $v) {
    echo "<p>" . str_replace($dirpath, &#39;&#39;, $arrRes[$k][0]) . "<br />" . $arrRes[$k][1] . "</p>";
}
?>

最后给大家附一个字节计算函数,这个可以转换

<?php
//字节数转换成带单位的
/* 原理是利用对数求出欲转换的字节数是1024的几次方。
 * 其实就是利用对数的特性确定单位。
*/
function size2mb($size, $digits = 2) { //digits,要保留几位小数
    $unit = array(
        &#39;&#39;,
        &#39;K&#39;,
        &#39;M&#39;,
        &#39;G&#39;,
        &#39;T&#39;,
        &#39;P&#39;
    ); //单位数组,是必须1024进制依次的哦。
    $base = 1024; //对数的基数
    $i = floor(log($size, $base)); //字节数对1024取对数,值向下取整。
    return round($size / pow($base, $i) , $digits) . &#39; &#39; . $unit[$i] . &#39;B&#39;;
}
?>


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn