<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.filesystem.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'zh',
  ),
  'this' => 
  array (
    0 => 'function.clearstatcache.php',
    1 => 'clearstatcache',
    2 => '清除文件状态缓存',
  ),
  'up' => 
  array (
    0 => 'ref.filesystem.php',
    1 => '文件系统函数',
  ),
  'prev' => 
  array (
    0 => 'function.chown.php',
    1 => 'chown',
  ),
  'next' => 
  array (
    0 => 'function.copy.php',
    1 => 'copy',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'zh',
    'path' => 'reference/filesystem/functions/clearstatcache.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.clearstatcache" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">clearstatcache</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">clearstatcache</span> &mdash; <span class="dc-title">清除文件状态缓存</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.clearstatcache-description">
  <h3 class="title">说明</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>clearstatcache</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$clear_realpath_cache</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></span></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$filename</code><span class="initializer"> = &quot;&quot;</span></span>): <span class="type"><a href="language.types.void.php" class="type void">void</a></span></div>

  <p class="para rdfs-comment">
   当使用 <span class="function"><a href="function.stat.php" class="function">stat()</a></span>，<span class="function"><a href="function.lstat.php" class="function">lstat()</a></span>
   或者任何列在受影响函数表（见下面）中的函数时，PHP
   将缓存这些函数的返回信息以提供更快的性能。然而在某些情况下，你可能想清除被缓存的信息。例如如果在一个脚本中多次检查同一个文件，而该文件在此脚本执行期间有被删除或修改的危险时，你需要清除文件状态缓存。这种情况下，可以用
   <span class="function"><strong>clearstatcache()</strong></span> 函数来清除被
   PHP 缓存的该文件信息。
  </p>
  <p class="para">
   必须注意的是，对于不存在的文件，PHP 并不会缓存其信息。所以如果调用
   <span class="function"><a href="function.file-exists.php" class="function">file_exists()</a></span> 来检查不存在的文件，在该文件没有被创建之前，它都会返回
   <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>。如果该文件被创建了，就算以后被删除，它都会返回 <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong>
   函数 <span class="function"><a href="function.unlink.php" class="function">unlink()</a></span> 会自动清除该缓存.
  </p>
  <blockquote class="note"><p><strong class="note">注意</strong>: 
   <p class="para">
    本函数缓存特定文件名的信息，因此只在对同一个文件名进行多次操作并且需要该文件信息不被缓存时才需要调用
    <span class="function"><strong>clearstatcache()</strong></span>。
   </p>
  </p></blockquote>
  <p class="para">
   受影响的函数包括
   <span class="function"><a href="function.stat.php" class="function">stat()</a></span>，
   <span class="function"><a href="function.lstat.php" class="function">lstat()</a></span>，
   <span class="function"><a href="function.file-exists.php" class="function">file_exists()</a></span>，
   <span class="function"><a href="function.is-writable.php" class="function">is_writable()</a></span>，
   <span class="function"><a href="function.is-readable.php" class="function">is_readable()</a></span>，
   <span class="function"><a href="function.is-executable.php" class="function">is_executable()</a></span>，
   <span class="function"><a href="function.is-file.php" class="function">is_file()</a></span>，
   <span class="function"><a href="function.is-dir.php" class="function">is_dir()</a></span>，
   <span class="function"><a href="function.is-link.php" class="function">is_link()</a></span>，
   <span class="function"><a href="function.filectime.php" class="function">filectime()</a></span>，
   <span class="function"><a href="function.fileatime.php" class="function">fileatime()</a></span>，
   <span class="function"><a href="function.filemtime.php" class="function">filemtime()</a></span>，
   <span class="function"><a href="function.fileinode.php" class="function">fileinode()</a></span>，
   <span class="function"><a href="function.filegroup.php" class="function">filegroup()</a></span>，
   <span class="function"><a href="function.fileowner.php" class="function">fileowner()</a></span>，
   <span class="function"><a href="function.filesize.php" class="function">filesize()</a></span>，
   <span class="function"><a href="function.filetype.php" class="function">filetype()</a></span>
   和 <span class="function"><a href="function.fileperms.php" class="function">fileperms()</a></span>。
  </p>
 </div>

 
 <div class="refsect1 parameters" id="refsect1-function.clearstatcache-parameters">
  <h3 class="title">参数</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">clear_realpath_cache</code></dt>
     <dd>
      <p class="para">
       是否<em>也</em>清除真实路径缓存
      </p>
     </dd>
    
    
     <dt><code class="parameter">filename</code></dt>
     <dd>
      <p class="para">
       仅清除指定文件名的真实路径缓存; 只在
       <code class="parameter">clear_realpath_cache</code> 为 <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> 
       时启用。
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.clearstatcache-returnvalues">
  <h3 class="title">返回值</h3>
  <p class="para">
   没有返回值。
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.clearstatcache-examples">
  <h3 class="title">示例</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>示例 #1 <span class="function"><strong>clearstatcache()</strong></span> 例子</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$file </span><span style="color: #007700">= </span><span style="color: #DD0000">'output_log.txt'</span><span style="color: #007700">;<br /><br />function </span><span style="color: #0000BB">get_owner</span><span style="color: #007700">(</span><span style="color: #0000BB">$file</span><span style="color: #007700">)<br />{<br />    </span><span style="color: #0000BB">$stat </span><span style="color: #007700">= </span><span style="color: #0000BB">stat</span><span style="color: #007700">(</span><span style="color: #0000BB">$file</span><span style="color: #007700">);<br />    </span><span style="color: #0000BB">$user </span><span style="color: #007700">= </span><span style="color: #0000BB">posix_getpwuid</span><span style="color: #007700">(</span><span style="color: #0000BB">$stat</span><span style="color: #007700">[</span><span style="color: #DD0000">'uid'</span><span style="color: #007700">]);<br />    return </span><span style="color: #0000BB">$user</span><span style="color: #007700">[</span><span style="color: #DD0000">'name'</span><span style="color: #007700">];<br />}<br /><br /></span><span style="color: #0000BB">$format </span><span style="color: #007700">= </span><span style="color: #DD0000">"UID @ %s: %s\n"</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">printf</span><span style="color: #007700">(</span><span style="color: #0000BB">$format</span><span style="color: #007700">, </span><span style="color: #0000BB">date</span><span style="color: #007700">(</span><span style="color: #DD0000">'r'</span><span style="color: #007700">), </span><span style="color: #0000BB">get_owner</span><span style="color: #007700">(</span><span style="color: #0000BB">$file</span><span style="color: #007700">));<br /><br /></span><span style="color: #0000BB">chown</span><span style="color: #007700">(</span><span style="color: #0000BB">$file</span><span style="color: #007700">, </span><span style="color: #DD0000">'ross'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">printf</span><span style="color: #007700">(</span><span style="color: #0000BB">$format</span><span style="color: #007700">, </span><span style="color: #0000BB">date</span><span style="color: #007700">(</span><span style="color: #DD0000">'r'</span><span style="color: #007700">), </span><span style="color: #0000BB">get_owner</span><span style="color: #007700">(</span><span style="color: #0000BB">$file</span><span style="color: #007700">));<br /><br /></span><span style="color: #0000BB">clearstatcache</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">printf</span><span style="color: #007700">(</span><span style="color: #0000BB">$format</span><span style="color: #007700">, </span><span style="color: #0000BB">date</span><span style="color: #007700">(</span><span style="color: #DD0000">'r'</span><span style="color: #007700">), </span><span style="color: #0000BB">get_owner</span><span style="color: #007700">(</span><span style="color: #0000BB">$file</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>以上示例的输出类似于：</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">UID @ Sun, 12 Oct 2008 20:48:28 +0100: root
UID @ Sun, 12 Oct 2008 20:48:28 +0100: root
UID @ Sun, 12 Oct 2008 20:48:28 +0100: ross</pre>
</div>
    </div>
   </div>
  </p>
 </div>


</div><?php manual_footer($setup); ?>