Skip to content

Instantly share code, notes, and snippets.

@9ete
Last active August 29, 2015 14:20
Show Gist options
  • Save 9ete/f337a87b7e704b58dfb0 to your computer and use it in GitHub Desktop.
Save 9ete/f337a87b7e704b58dfb0 to your computer and use it in GitHub Desktop.
Print directories in current directory with links
<?php
$dirs = array_filter(glob('*'), 'is_dir');
foreach ($dirs as $dir) {
if ($dir !== 'scp_dump' || $dir !== 'scp_dump') {
echo "<a href='http://".$dir.".devdomain.com/'>".$dir.'</a><br/>';
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment