次のコードを使用して、Books ディレクトリにあるファイルの名前を読み込んでみました。
<?php
if ($handle = opendir('/Books')) {
echo "Directory handle: $handle\n";
echo "Entries:\n";
while (false !== ($entry = readdir($handle))) {
echo "$entry\n";
}
closedir($handle);
}
?>
しかし、名前は表示されないようです。私はこれを間違っているのですか、それとも正しいディレクトリを見つけていませんか?