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.
问题:如果父文件夹对每个人(755、753 等)的权限低于 777,这会对放置更深的文件夹有影响吗?
例子:
我有三个文件夹(一个在另一个),比方说:“f1/f2/f3” 在文件夹“f2”中我有“script.php”文件,它试图将“f3”文件夹从 755 设置为 777 权限:
<? chmod("/f3",0777); ?>
“f1”和“f3”是 755,“f2”和“script.php”是 777。
我从浏览器运行 script.php,但它不起作用。