Various small fixes to the rmdir() documentation.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@75059 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Sander Roobol 2002-03-24 19:09:11 +00:00
parent de5346406e
commit fe7b7ea819

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.130 $ -->
<!-- $Revision: 1.131 $ -->
<reference id="ref.filesystem">
<title>Filesystem functions</title>
<titleabbrev>Filesystem</titleabbrev>
@ -2633,19 +2633,16 @@ pclose($fp);
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>rmdir</methodname>
<type>bool</type><methodname>rmdir</methodname>
<methodparam><type>string</type><parameter>dirname</parameter></methodparam>
</methodsynopsis>
<para>
Attempts to remove the directory named by pathname. The directory
must be empty, and the relevant permissions must permit.
this.
Attempts to remove the directory named by <parameter>dirname</parameter>.
The directory must be empty, and the relevant permissions must permit this.
&return.success;
</para>
<para>
If an error occurs, returns 0.
</para>
<para>
See also <function>mkdir</function>.
See also <function>mkdir</function> and <function>unlink</function>.
</para>
</refsect1>
</refentry>