<?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 => 'tr',
  ),
  'this' => 
  array (
    0 => 'function.realpath-cache-get.php',
    1 => 'realpath_cache_get',
    2 => 'Mutlak dosya yolu &ouml;nbellek girdilerini d&ouml;nd&uuml;r&uuml;r',
  ),
  'up' => 
  array (
    0 => 'ref.filesystem.php',
    1 => 'Dosya Sistemi İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.realpath.php',
    1 => 'realpath',
  ),
  'next' => 
  array (
    0 => 'function.realpath-cache-size.php',
    1 => 'realpath_cache_size',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'tr',
    'path' => 'reference/filesystem/functions/realpath-cache-get.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.realpath-cache-get" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">realpath_cache_get</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.2, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">realpath_cache_get</span> &mdash; <span class="dc-title">Mutlak dosya yolu önbellek girdilerini döndürür</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.realpath-cache-get-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>realpath_cache_get</strong></span>(): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="para rdfs-comment">
   Mutlak dosya yolu önbelleğinin içeriğini döndürür.
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.realpath-cache-get-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   Mutlak dosya yolu önbellek girdilerini bir dizi olarak döndürür. Dizinin
   anahtarları özgün dosya yolu girdileri, değerleri ise veri öğelerini içeren
   dizilerdir. Bu veri öğeleri, çözümlenen dosya yolu, son kullanım tarihi ve
   önbellekte tutulan diğer seçeneklerdir.
   </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.realpath-cache-get-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">Bu işlevin bağımsız değişkeni yoktur.</p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.realpath-cache-get-examples">
  <h3 class="title">Örnekler</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Örnek 1 - <span class="function"><strong>realpath_cache_get()</strong></span> örneği</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">realpath_cache_get</span><span style="color: #007700">());<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>
Yukarıdaki örnek şuna benzer bir çıktı üretir:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">array(2) {
  [&quot;/test&quot;]=&gt;
  array(4) {
    [&quot;key&quot;]=&gt;
    int(123456789)
    [&quot;is_dir&quot;]=&gt;
    bool(true)
    [&quot;realpath&quot;]=&gt;
    string(5) &quot;/test&quot;
    [&quot;expires&quot;]=&gt;
    int(1260318939)
  }
  [&quot;/test/test.php&quot;]=&gt;
  array(4) {
    [&quot;key&quot;]=&gt;
    int(987654321)
    [&quot;is_dir&quot;]=&gt;
    bool(false)
    [&quot;realpath&quot;]=&gt;
    string(12) &quot;/root/test.php&quot;
    [&quot;expires&quot;]=&gt;
    int(1260318939)
  }
}</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.realpath-cache-get-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.realpath-cache-size.php" class="function" rel="rdfs-seeAlso">realpath_cache_size()</a> - Mutlak dosya yolu &ouml;nbellek boyunu d&ouml;nd&uuml;r&uuml;r</span></li>
   </ul>
  </p>
 </div>


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