CHMOD ermitteln
<?php | |
// Ermittelt den CHMOD einer Datei | |
$chmod = (int) substr (decoct (fileperms ("datei.dat")), -3); | |
// CHMOD ändern | |
chmod("datei.htm", 0644); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment