Skip to content

Instantly share code, notes, and snippets.

@Cheejyg
Created September 1, 2019 06:40
Show Gist options
  • Save Cheejyg/cb1883fab5a4217f297511bd845b7c75 to your computer and use it in GitHub Desktop.
Save Cheejyg/cb1883fab5a4217f297511bd845b7c75 to your computer and use it in GitHub Desktop.
function getMultiple_FILES() {
$_FILE = array();
foreach($_FILES as $name => $file) {
foreach($file as $property => $keys) {
foreach($keys as $key => $value) {
$_FILE[$name][$key][$property] = $value;
}
}
}
return $_FILE;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment