Skip to content

Instantly share code, notes, and snippets.

@dexfs
Created June 29, 2018 13:17
Show Gist options
  • Save dexfs/f00d889259bb68e5817e48d0a493a57e to your computer and use it in GitHub Desktop.
Save dexfs/f00d889259bb68e5817e48d0a493a57e to your computer and use it in GitHub Desktop.
foreach($arquivos as $arquivo)
{
if(!in_array($arquivo->getFileName(), $excludeNotDir) &&
!in_array($arquivo->getExtension(), $excludeExtension) &&
!$arquivo->isDir())
{
array_push($files, array('arquivo' => $arquivo->getFileName()));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment