我想chdir
在 php 中更改目录,因为我需要在 Linux 中执行命令。我当前的目录是/var/www/httpdocs/website/admin
,我想去 httpdocs 的 sub_directory docs
。我使用绝对路径,如:
chdir("/var/www/httpdocs/docs");
但它不起作用。
我只能使用:获取网站chdir("../");
或使用获取管理员的子目录images
:chdir("/var/www/httpdocs/website/admin/images");
但我无法得到httpdocs
。怎么了?
任何提示将不胜感激。