我有一个 php 代码,它将显示我在文件夹中拥有的文件数量。
代码:这将在我的页面上呼应,“共有 119 篇文章”
$directory = "../health/";
if (glob($directory . "*.php") != false) /* change php to the file you require either html php jpg png. */ {
$filecount = count(glob($directory . "*.php")); /* change php to the file you require either html php jpg png. */
echo "<p>There are a total of";
echo " $filecount ";
echo "Articles</p>";
} else {
echo 0;
}
问题:
我想计算 27 个或更多文件夹中的文件并回显文件总数。
有没有我可以添加要打开的文件夹列表,例如:
$directory = "../health/","../food/","../sport/";
然后它将统计所有文件并显示总数“共有394篇文章”
谢谢