我的opendir
功能有问题。
if ($handle = opendir($dir)) {
echo "Directory handle: $handle\n";
echo "Entries:\n";
while (false !== ($entry = readdir($handle))) {
echo "$entry\n";
}
closedir($handle);
}
我检查了我的文件夹是否存在并且确实存在。我将权限更改为777。可能是什么问题呢?
例如:images/car/Volvo_S40_4dr_sedan/
不工作。问题是什么?