more entities: &return.success;

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@77177 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Friedhelm Betz 2002-04-08 13:59:33 +00:00
parent 9bb2e4f101
commit 927fea530d

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.138 $ -->
<!-- $Revision: 1.139 $ -->
<reference id="ref.filesystem">
<title>Filesystem functions</title>
<titleabbrev>Filesystem</titleabbrev>
@ -77,7 +77,7 @@ $file = basename ($path,".php"); // $file is set to "index"
change the group of a file to any group of which that user is a member.
</para>
<para>
Returns &true; on success; otherwise returns &false;.
&return.success;
</para>
<para>
See also <function>chown</function> and
@ -120,7 +120,7 @@ chmod ("/somedir/somefile", 0755); // octal; correct value of mode
</informalexample>
</para>
<para>
Returns &true; on success and &false; otherwise.
&return.success;
</para>
<para>
See also <function>chown</function> and
@ -148,7 +148,7 @@ chmod ("/somedir/somefile", 0755); // octal; correct value of mode
the superuser may change the owner of a file.
</para>
<para>
Returns &true; on success; otherwise returns &false;.
&return.success;
</para>
<para>
See also <function>chown</function> and
@ -420,8 +420,7 @@ $df = disk_total_space("/"); // $df contains the total number of
The file pointed to by <parameter>fp</parameter> is closed.
</para>
<para>
Returns &true; on success and &false;
on failure.
&return.success;
</para>
<para>
The file pointer must be valid, and must point to a file
@ -2134,7 +2133,7 @@ mkdir ("/path/to/my/dir", 0700);
</informalexample>
</para>
<para>
Returns &true; on success and &false; on failure.
&return.success;
</para>
<para>
See also <function>rmdir</function>.
@ -2556,7 +2555,7 @@ pclose($fp);
<parameter>newname</parameter>.
</para>
<para>
Returns &true; on success and &false; on failure.
&return.success;
</para>
</refsect1>
</refentry>
@ -2908,7 +2907,7 @@ fclose($temp); // this removes the file
If the file does not exist, it is created.
</para>
<para>
Returns &true; on success and &false; otherwise.
&return.success;
<example>
<title><function>touch</function> example</title>
<programlisting role="php">