Skip to content

Instantly share code, notes, and snippets.

@fffaraz
Created July 10, 2014 09:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fffaraz/74a2b5ac20862bf43b35 to your computer and use it in GitHub Desktop.
Save fffaraz/74a2b5ac20862bf43b35 to your computer and use it in GitHub Desktop.
php file listing
<table border="1">
<th><td>File</td><td>Size</td></th>
<?php
$files = scandir(".");
$i = 0;
foreach($files as $entry)
{
if($entry == '.' || $entry == '..' || $entry == 'index.php') continue;
echo '<tr>';
echo '<td>' . ++$i . '</td>';
echo '<td><a href="' . $entry .'">' . $entry . '</a></td>';
echo '<td>' . round(filesize($entry) / 1024) . '</td>';
echo '</tr>';
echo "\n";
}
?>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment