Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stewil87/ea3e307d8d1eb1bbe8f28c890f211dc7 to your computer and use it in GitHub Desktop.
Save stewil87/ea3e307d8d1eb1bbe8f28c890f211dc7 to your computer and use it in GitHub Desktop.
<?php
$dir = './';
$files1 = scandir($dir);
foreach (glob("*.jpg") as $file) {
echo $file;
$newFile = $file;
$searchWord = array('25x25', '1280x', '100x100', '150x150', '300x240','300x', '600x', '768x', '900x', '1024x','1820x', '854x', '400x', '477x', '480x','672x', '960x', '750x');
if (preg_match('/' . implode('|', $searchWord) . '/', $newFile)) {
unlink ($dir . $newFile);
echo $file . "\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment