Note that file*time() returns a Unix timestamp.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@18842 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Torben Wilson 2000-01-27 02:44:48 +00:00
parent 8b3a1f4167
commit a80e9af9ab

View file

@ -634,17 +634,21 @@ $fcontents = join( '', file( 'http://www.php.net' ) );
<funcdef>int <function>fileatime</function></funcdef>
<paramdef>string <parameter>filename</parameter></paramdef>
</funcsynopsis>
<para>
<simpara>
Returns the time the file was last accessed, or false in case of
an error.
</para>
<para>
an error. The time is returned as a Unix timestamp.
</simpara>
<simpara>
The results of this function are cached. See
<function>clearstatcache</function> for more details.
</para>
</simpara>
</refsect1>
</refentry>
<refentry id="function.filectime">
<refnamediv>
<refname>filectime</refname>
@ -658,7 +662,7 @@ $fcontents = join( '', file( 'http://www.php.net' ) );
</funcsynopsis>
<para>
Returns the time the file was last changed, or false in case of
an error.
an error. The time is returned as a Unix timestamp.
</para>
<para>
The results of this function are cached. See
@ -724,7 +728,7 @@ $fcontents = join( '', file( 'http://www.php.net' ) );
</funcsynopsis>
<para>
Returns the time the file was last modified, or false in case of
an error.
an error. The time is returned as a Unix timestamp.
</para>
<para>
The results of this function are cached. See