Skip to content

Instantly share code, notes, and snippets.

@Medalink
Created January 30, 2012 22:50
Show Gist options
  • Save Medalink/1707315 to your computer and use it in GitHub Desktop.
Save Medalink/1707315 to your computer and use it in GitHub Desktop.
PHP Directory Listing w/Extension Filter
<?php
$dir = '.';
if( $handle = opendir( $dir ) ) {
while( false !== ( $entry = readdir( $handle ) ) ) {
if( preg_match( '/.html/', $entry ) ) {
echo "$entry\n";
}
}
closedir( $handle );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment