Answers for "get directory list in to php array"

PHP
0

php list directories

$dir = '.';
$directories = glob($dir . '/*', GLOB_ONLYDIR);
Posted by: Guest on July-22-2020

Code answers related to "get directory list in to php array"

Browse Popular Code Answers by Language