From dc39a7da4bc0f817ce4b45b01cc7df53356de2b8 Mon Sep 17 00:00:00 2001 From: Sara Golemon Date: Sat, 13 Dec 2003 21:18:12 +0000 Subject: [PATCH] mkdir/rmdir now support wrappers git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@146384 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/filesystem/functions/mkdir.xml | 15 ++++++++++++++- reference/filesystem/functions/rmdir.xml | 15 ++++++++++++++- 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/reference/filesystem/functions/mkdir.xml b/reference/filesystem/functions/mkdir.xml index ea39523023..e9ba587d8f 100644 --- a/reference/filesystem/functions/mkdir.xml +++ b/reference/filesystem/functions/mkdir.xml @@ -1,5 +1,5 @@ - + @@ -12,6 +12,7 @@ boolmkdir stringpathname intmode + resourcecontext Attempts to create the directory specified by pathname. @@ -46,6 +47,18 @@ mkdir ("/path/to/my/dir", 0700); &return.success; + + + As of PHP 5.0.0 mkdir can also be + used with some url wrappers. Refer to + for a listing of which wrappers support mkdir. + + + + + The context parameter was added as of PHP 5.0.0. + + See also rmdir. diff --git a/reference/filesystem/functions/rmdir.xml b/reference/filesystem/functions/rmdir.xml index 373711ca03..de5792eb16 100644 --- a/reference/filesystem/functions/rmdir.xml +++ b/reference/filesystem/functions/rmdir.xml @@ -1,5 +1,5 @@ - + @@ -11,12 +11,25 @@ boolrmdir stringdirname + resourcecontext Attempts to remove the directory named by dirname. The directory must be empty, and the relevant permissions must permit this. &return.success; + + + As of PHP 5.0.0 rmdir can also be + used with some url wrappers. Refer to + for a listing of which wrappers support rmdir. + + + + + The context parameter was added as of PHP 5.0.0. + + See also mkdir and unlink.