Skip to content

Instantly share code, notes, and snippets.

@9ete
Created May 7, 2015 16:05
Show Gist options
  • Save 9ete/73167bdb3c4680a9d2b8 to your computer and use it in GitHub Desktop.
Save 9ete/73167bdb3c4680a9d2b8 to your computer and use it in GitHub Desktop.
Output all directories w/in current directory
<?php
$dirs = array_filter(glob('*'), 'is_dir');
foreach ($dirs as $dir) {
echo $dir;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment