Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 PHP 脚本位于 中/var/www/,我需要打开位于 中的文件夹/home/myuser/。
/var/www/
/home/myuser/
如何使用 PHP 访问此文件夹?
您必须修改您的open_basedir选项 romphp.ini文件。例如,如果您希望 PHP 访问/home/myusr/;那么你必须在字符串 :/home/myusr/的末尾添加。open_basedir
open_basedir
php.ini
/home/myusr/
:/home/myusr/
了解更多信息。请参阅有关此选项的 PHP 文档。