mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
8b3a1f4167
commit
a80e9af9ab
1 changed files with 11 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue