Skip to content

Instantly share code, notes, and snippets.

@bytefade
Created March 11, 2015 14:28
Show Gist options
  • Save bytefade/159ca2e75bd6a68a7d51 to your computer and use it in GitHub Desktop.
Save bytefade/159ca2e75bd6a68a7d51 to your computer and use it in GitHub Desktop.
Except files
$except = array("rar", "zip", "mp3", "mp4", "mp3", "mov", "flv", "wmv", "swf", "png", "gif", "jpg", "bmp", "avi");
$imp = implode('|', $except);
foreach($files as $file)
{
if(preg_match('/^.*\.('.$imp.')$/i', $file))
echo $file;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment