统计PHP目录中的文件数方法
代码示例如下: <?php $folderPath = upload/; $countFile = 0; $totalFiles = glob($folderPath . *); if ($totalFiles){ $countFile = count($totalFiles); } print_r($countFile); 相关函数介绍: glob()函数寻找与模式匹配的文件路径 glob ( string $pattern [, int $flags = 0 ] ) : array glob() 函数依照 libc glob() 函数使用的规则寻找所有与 pattern 匹配的
暂无评论