Skip to content

Instantly share code, notes, and snippets.

@Philosoft
Created March 24, 2017 15:25
Show Gist options
  • Save Philosoft/d867cf9c5c495720c452c75724fb3de3 to your computer and use it in GitHub Desktop.
Save Philosoft/d867cf9c5c495720c452c75724fb3de3 to your computer and use it in GitHub Desktop.
<?php
$dir = new RecursiveDirectoryIterator(__DIR__);
$iter = new RecursiveIteratorIterator($dir);
$regex = new RegexIterator($iter, '#^.*index\.php$#i', RecursiveRegexIterator::GET_MATCH);
foreach ($regex as $fileArray) {
echo $fileArray[0] . PHP_EOL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment