计算 PHP 目录中有多少个文件
我正在做一个稍微新的项目。我想知道某个目录中有多少个文件。
<div id="header">
<?php
$dir = opendir('uploads/'); # This is the directory it will count from
$i = 0; # Integer starts at 0 before counting
# While false is not equal to the filedirectory
while (false !== ($file = readdir($dir))) {
if (!in_array($file, array('.', '..') and !is_dir($file)) $i++;
}
echo "There were $i files"; # Prints out how many were in the directory
?>
</div>
这就是我到目前为止(从搜索)所拥有的。但是,它没有正确显示?我已经添加了一些注释,因此请随时删除它们,它们只是为了让我尽可能地理解它。
如果您需要更多信息或觉得我描述得不够多,请随时说明。