Skip to content

Instantly share code, notes, and snippets.

@yavir-me
Created September 30, 2016 20:32
Show Gist options
  • Save yavir-me/4637b603ce6c66baed3c43bebf5eaf27 to your computer and use it in GitHub Desktop.
Save yavir-me/4637b603ce6c66baed3c43bebf5eaf27 to your computer and use it in GitHub Desktop.
check extensions of all the files
if (count($_FILES)) {
foreach ($_FILES as $file) {
$tmp = explode('.', $file['name']);
$ext = end($tmp);
if ($this->inArrayI($ext, $this->img_exts)) {
// do smth
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment