Skip to content

Instantly share code, notes, and snippets.

@hosseinnedaee
Last active July 6, 2021 06:09
Show Gist options
  • Save hosseinnedaee/bf49ba177cc3b31d360f070469e07c4e to your computer and use it in GitHub Desktop.
Save hosseinnedaee/bf49ba177cc3b31d360f070469e07c4e to your computer and use it in GitHub Desktop.
PHP Glob sub-folders with pattern
<?php
/*
* reference: https://stackoverflow.com/a/54324543/5077529
*/
// This example allows 0-3 arbitrary subfolders:
glob("$root/{,*/,*/*/,*/*/*/}test_*.zip", GLOB_BRACE);
// Or for multiple file types(for example .pdf,.mp4 and .mp3):
glob("$root/{*.pdf,*/*.pdf,*/*/*.pdf,*/*/*/*.pdf,*.mp4,*/*.mp4,*/*/*.mp4,*/*/*/*.mp4,*.mp3,*/*.mp3,*/*/*.mp3,*/*/*/*.mp3}", GLOB_BRACE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment