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.
Windowsでテキストファイルを簡単にしようとしていchmodますが、後で書き込み可能かどうかを区別したいと思います。
chmod
を 755 に変更しましたchmodが、PHP スクリプトを実行した後でも同じように表示されます。
<?php chmod('Math.txt',755); //tried 0755 still didn't work echo "</br>"; echo substr(sprintf('%o', fileperms('Math.txt')), -4); ?>