我正在做一个稍微有点新的项目。我想知道在一个特定的目录中有多少文件。
<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>
这就是我到目前为止(从寻找)所得到的。然而,它是不是出现正确?我已经添加了一些注释,所以请随意删除他们,他们只是让我能够理解它作为最好的,我可以。
如果您需要一些更多的信息或感觉好像我没有描述这一点足够,请随意陈述如此。