前言这题之前做过来着,可以说一模一样了。
<?php
$files = scandir('./');
foreach ($files as $file) {
if (is_file($file)) {
2021-09-06