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.
我正在尝试为chmodWindows 上的文本文件做一个简单的操作,稍后我想区分哪个是可写的。
chmod
现在我已经chmod用 755 更改了,但即使在运行 PHP 脚本后它仍然显示相同的内容。
<?php chmod('Math.txt',755); //tried 0755 still didn't work echo "</br>"; echo substr(sprintf('%o', fileperms('Math.txt')), -4); ?>