このコードは短いですが、非常に実用的です。指定したディレクトリに指定したサフィックス名のファイルへのハイパーリンクを簡単に作成でき、指定したディレクトリのホームページに移動しないように設定できます。
function navbar(){
$files = dir("."); //ディレクトリを指定
$pipe = " | " //以下の方法でディレクトリ内のすべてのファイルを検索しますloop
while ($current = $files->read()) {
//htm タイプ以外のファイルをすべて無視します。
if (strpos($current, "php")!= FALSE) //サフィックスを PHP に設定します。ファイルはナビゲートされます
//それ自体 (index.html など) を無視します
{ if (strpos($current, "ndex") == FALSE)
{
print "print $current;
print ">";
print $ current;
print $pipe
}; // 関数
を呼び出します。
http://www.bkjia.com/PHPjc/532217.html
www.bkjia.com