0

我写了一个 php 脚本来输出目录的内容。例如,它与“/usr/local/”完美配合,但无法使用“/Users/der_/Pictures/”运行相同的代码...输出为:“打开目录 /Users/der_/Pictures/ 读取失败”。检查此目录的权限给出:所有者-der_,组-staff。谢谢。运行 php 5.4.6... 是否有必要将权限更改为“root”?我的回答是“是”:更改目录权限,即 chown user:group myexemple_directory 但要小心...

4

1 回答 1

0

用户配置文件不应具有 root 权限

这个对我有用

#!/usr/bin/php

<?php

if ($handle = opendir('/Users/der_/Pictures')) {
    echo "Content:\n";

    /* This is the correct way to loop over the directory. */
    while (false !== ($entry = readdir($handle))) {
        echo "$entry\n";
    }

    closedir($handle);
}
?>
于 2012-11-12T19:40:29.040 回答