|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-05-12 12:12 UTC] ilia at prohost dot org
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 14:00:01 2025 UTC |
rmdir() function can be used to delete directories that a user should be able to delete under safe_mode. Ex. mkdir test chmod 777 test (gid: user pid: user) test.php (gid: www pid: www) <?php rmdir('test'); ?> works!