PHP expert |
|
snap je hoe heel dat umask werkt?
dat wordt standaard afgetrokken van wat je opgeeft bij chmod.
het lijkt me dus wel prachtisch dat je zoiets doet:
touch ('bestand');
$old = umask(0);
chmod('bestand',0777);
umask($old);
fopen('bestand','w');
precies zoals het er staat. |