This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PHP List all files in a directory excluding the index file from the list. Functions used are array_values, preg_grep, glob, foreach and basename. $files = array_values(preg_grep('/^((?!index.php).)*$/', glob("*.php"))); | |
foreach ($files as $filename) | |
{ | |
echo "<li><a href=\"{$filename}\">".basename($filename, ".php")."</a></li>"; | |
} | |
Another option using str_replace and !empty <?php | |
foreach (glob("*.php") as $filename) | |
{ | |
$filename = str_replace("index.php", '', $filename); | |
if (!empty($filename)) | |
{ | |
echo "<li><a href=\"$filename\">" . basename($filename, ".php") . "</a></li>"; | |
} | |
} |