scandir:
$files = scandir('folder/');foreach($files as $file) { //do your work here}或glob可能更适合您的需求:
$files = glob('folder/*.{jpg,png,gif}', GLOB_BRACE);foreach($files as $file) { //do your work here}
scandir:
$files = scandir('folder/');foreach($files as $file) { //do your work here}或glob可能更适合您的需求:
$files = glob('folder/*.{jpg,png,gif}', GLOB_BRACE);foreach($files as $file) { //do your work here}