在mac os 10.8.2上使用php列出完整的主目录

时间:2012-11-12 09:28:20

标签: php directory osx-mountain-lion

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

1 个答案:

答案 0 :(得分: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);
}
?>