mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-18 05:26:57 +08:00
92 lines
3.2 KiB
HTML
92 lines
3.2 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>获取真实目录缓存的详情</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.realpath-cache-get" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">realpath_cache_get</h1>
|
|
<p class="verinfo">(PHP 5 >= 5.3.2, PHP 7)</p><p class="refpurpose"><span class="refname">realpath_cache_get</span> — <span class="dc-title">获取真实目录缓存的详情</span></p>
|
|
|
|
</div>
|
|
|
|
<div class="refsect1 description" id="refsect1-function.realpath-cache-get-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>realpath_cache_get</strong></span>
|
|
( <span class="methodparam">void</span>
|
|
) : <span class="type">array</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
获得真实路径缓存的详情。
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.realpath-cache-get-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
返回真实路径缓存详情的数组。键是原始路径以及值为具体信息数组,含有该解析的路径,过期时间以及其他的更多选项。
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 examples" id="refsect1-function.realpath-cache-get-examples">
|
|
<h3 class="title">范例</h3>
|
|
<p class="para">
|
|
<div class="example" id="example-2837">
|
|
<p><strong>Example #1 <span class="function"><strong>realpath_cache_get()</strong></span> example</strong></p>
|
|
<div class="example-contents">
|
|
<div class="phpcode"><pre><span style="color: #000000">
|
|
<span style="color: #0000BB"><?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">?></span>
|
|
</span>
|
|
</pre></div>
|
|
</div>
|
|
|
|
<div class="example-contents"><p>以上例程的输出类似于:</p></div>
|
|
<div class="example-contents screen">
|
|
<div class="cdata"><pre>
|
|
array(2) {
|
|
["/test"]=>
|
|
array(4) {
|
|
["key"]=>
|
|
int(123456789)
|
|
["is_dir"]=>
|
|
bool(true)
|
|
["realpath"]=>
|
|
string(5) "/test"
|
|
["expires"]=>
|
|
int(1260318939)
|
|
}
|
|
["/test/test.php"]=>
|
|
array(4) {
|
|
["key"]=>
|
|
int(987654321)
|
|
["is_dir"]=>
|
|
bool(false)
|
|
["realpath"]=>
|
|
string(12) "/root/test.php"
|
|
["expires"]=>
|
|
int(1260318939)
|
|
}
|
|
}
|
|
</pre></div>
|
|
</div>
|
|
</div>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 seealso" id="refsect1-function.realpath-cache-get-seealso">
|
|
<h3 class="title">参见</h3>
|
|
<p class="para">
|
|
<ul class="simplelist">
|
|
<li class="member"><span class="function"><a href="realpath_cache_size.html" class="function" rel="rdfs-seeAlso">realpath_cache_size()</a> - 获取真实路径缓冲区的大小</span></li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
</div></div></div></body></html> |