uTools-Manuals/docs/php/filectime.html
2019-04-08 23:22:26 +08:00

119 lines
5.7 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>取得文件的 inode 修改时间</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.filectime" class="refentry">
<div class="refnamediv">
<h1 class="refname">filectime</h1>
<p class="verinfo">(PHP 4, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">filectime</span> &mdash; <span class="dc-title">取得文件的 inode 修改时间</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.filectime-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>filectime</strong></span>
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$filename</code></span>
) : <span class="type">int</span></div>
<p class="para rdfs-comment">
取得文件的 inode 修改时间。
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.filectime-parameters">
<h3 class="title">参数</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">filename</code></dt>
<dd>
<p class="para">
文件的路径。
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.filectime-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
返回文件上次 inode 被修改的时间, 或者在失败时返回 <strong><code>FALSE</code></strong>
时间以 Unix 时间戳的方式返回。
</p>
</div>
<div class="refsect1 examples" id="refsect1-function.filectime-examples">
<h3 class="title">范例</h3>
<p class="para">
<div class="example" id="example-2786">
<p><strong>Example #1 <span class="function"><strong>filectime()</strong></span> 例子</strong></p>
<div class="example-contents">
<div class="phpcode"><pre><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #FF8000">//&nbsp;输出类似:&nbsp;&nbsp;somefile.txt&nbsp;was&nbsp;last&nbsp;changed:&nbsp;December&nbsp;29&nbsp;2002&nbsp;22:16:23.<br /><br /></span><span style="color: #0000BB">$filename&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">'somefile.txt'</span><span style="color: #007700">;<br />if&nbsp;(</span><span style="color: #0000BB">file_exists</span><span style="color: #007700">(</span><span style="color: #0000BB">$filename</span><span style="color: #007700">))&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;</span><span style="color: #DD0000">"</span><span style="color: #0000BB">$filename</span><span style="color: #DD0000">&nbsp;was&nbsp;last&nbsp;changed:&nbsp;"&nbsp;</span><span style="color: #007700">.&nbsp;</span><span style="color: #0000BB">date</span><span style="color: #007700">(</span><span style="color: #DD0000">"F&nbsp;d&nbsp;Y&nbsp;H:i:s."</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">filectime</span><span style="color: #007700">(</span><span style="color: #0000BB">$filename</span><span style="color: #007700">));<br />}<br /><br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</pre></div>
</div>
</div>
</p>
</div>
<div class="refsect1 errors" id="refsect1-function.filectime-errors">
<h3 class="title">错误/异常</h3>
<p class="para">
失败时抛出<strong><code>E_WARNING</code></strong>警告。
</p>
</div>
<div class="refsect1 notes" id="refsect1-function.filectime-notes">
<h3 class="title">注释</h3>
<blockquote class="note"><p><strong class="note">Note</strong>:
<p class="para">
注意:在大多数 Unix 文件系统中,当一个文件的 inode
数据被改变时则该文件被认为是修改了。也就是说,当文件的权限,所有者,所有组或其它
inode 中的元数据被更新时。参见
<span class="function"><a href="filemtime.html" class="function">filemtime()</a></span>(这才是你想用于在 Web
页面中建立“最后更新时间”脚注的函数)和 <span class="function"><a href="fileatime.html" class="function">fileatime()</a></span>
</p>
</p></blockquote>
<blockquote class="note"><p><strong class="note">Note</strong>:
<p class="para">
注意某些 Unix 说明文本中把 ctime 说成是该文件建立的时间,这是错的。在大多数
Unix 文件系统中没有 Unix 文件的建立时间。
</p>
</p></blockquote>
<blockquote class="note"><p><strong class="note">Note</strong>: <p class="para">注意:不同文件系统对时间的判断方法可能是不相同的。</p></p></blockquote>
<blockquote class="note"><p><strong class="note">Note</strong>: <span class="simpara">此函数的结果会被缓存。参见
<span class="function"><a href="clearstatcache.html" class="function">clearstatcache()</a></span> 以获得更多细节。</span></p></blockquote>
<div class="tip"><strong class="tip">Tip</strong><p class="simpara">自 PHP 5.0.0 起, 此函数也用于<em class="emphasis">某些</em>
URL 包装器。请参见 <a href="wrappers.html" class="xref">支持的协议和封装协议</a>以获得支持 <span class="function"><a href="stat.html" class="function">stat()</a></span> 系列函数功能的包装器列表。</p></div>
</div>
<div class="refsect1 seealso" id="refsect1-function.filectime-seealso">
<h3 class="title">参见</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="function"><a href="filemtime.html" class="function" rel="rdfs-seeAlso">filemtime()</a> - 取得文件修改时间</span></li>
</ul>
</p>
</div>
</div></div></div></body></html>