|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-05-12 10:40 UTC] ilia at prohost dot org
[2002-05-12 10:41 UTC] derick@php.net
[2002-05-12 11:46 UTC] rasmus@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 06:00:01 2025 UTC |
unlink() function can be used to delete files that user does not have permissions to delete. Ex. touch test; ls -l test; -rw-r--r-- 1 forum forum 0 May 12 10:33 test ls -l a.php -rw-rw-rw- 1 www www 35 May 12 10:33 a.php a.php: <?php unlink('test'); ?> after a.php is run via the web the file test is GONE!