Added note into stat.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@47382 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Damien Seguy 2001-05-14 12:37:47 +00:00
parent 1ca42ffdcc
commit 3a37ea31ec

View file

@ -2413,7 +2413,8 @@ $fp = popen ("/bin/ls", "r");
</funcprototype>
</funcsynopsis>
<para>
Gathers the statistics of the file named by filename.</para>
Gathers the statistics of the file named by filename.
</para>
<para>
Returns an array with the statistics of the file with the
following elements:
@ -2433,7 +2434,14 @@ $fp = popen ("/bin/ls", "r");
<listitem><simpara>number of blocks allocated</simpara></listitem>
</orderedlist>
* - only valid on systems supporting the st_blksize type--other
systems (i.e. Windows) return -1</para>
systems (i.e. Windows) return -1.
</para>
<para>
Returns <literal>FALSE</literal> in case of error.
</para>
<para>
<function>stat</function> doesn't handle URL as does <function>fopen</function>.
</para>
<para>
The results of this function are cached. See
<function>clearstatcache</function> for more details.