[Solved] Browse directory recursively and get files name
[ad_1] Since I’ve had to create the same functionality for a website of mine too, I’ll post my function as reference. function recursiveFileSearch($path, $searchmask = “*”) { $path = rtrim($path, “https://stackoverflow.com/”); $files = array(); if(is_array($searchmask)) { for($i = 0; $i < count($searchmask); $i++) { $files = array_merge($files, glob($path.”https://stackoverflow.com/”.$searchmask[$i])); } sort($files); } else { $files = … Read more