我尝试使用以下代码加载 Books 目录中的文件名:
<?php
if ($handle = opendir('/Books')) {
echo "Directory handle: $handle\n";
echo "Entries:\n";
while (false !== ($entry = readdir($handle))) {
echo "$entry\n";
}
closedir($handle);
}
?>
但它似乎不显示名称。我做错了还是没有找到正确的目录?