uTools-Manuals/docs/php/stream_resolve_include_path.html
2019-04-28 19:00:34 +08:00

89 lines
3.3 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>Resolve filename against the include path</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.stream-resolve-include-path" class="refentry">
<div class="refnamediv">
<h1 class="refname">stream_resolve_include_path</h1>
<p class="verinfo">(PHP 5 &gt;= 5.3.2, PHP 7)</p><p class="refpurpose"><span class="refname">stream_resolve_include_path</span> &mdash; <span class="dc-title">
Resolve filename against the include path
</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.stream-resolve-include-path-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>stream_resolve_include_path</strong></span>
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$filename</code></span>
) : <span class="type">string</span></div>
<p class="para rdfs-comment">
Resolve <code class="parameter">filename</code> against the include path according to the same rules as <span class="function"><a href="fopen.html" class="function">fopen()</a></span>/<span class="function"><a href="include.html" class="function">include</a></span>.
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.stream-resolve-include-path-parameters">
<h3 class="title">参数</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">filename</code></dt>
<dd>
<p class="para">
The filename to resolve.
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.stream-resolve-include-path-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
Returns a <span class="type"><a href="language.types.string.html" class="type string">string</a></span> containing the resolved absolute filename, 或者在失败时返回 <strong><code>FALSE</code></strong>.
</p>
</div>
<div class="refsect1 examples" id="refsect1-function.stream-resolve-include-path-examples">
<h3 class="title">范例</h3>
<p class="para">
<div class="example" id="example-4832">
<p><strong>Example #1 <span class="function"><strong>stream_resolve_include_path()</strong></span> example</strong></p>
<div class="example-contents"><p>
Basic usage example.
</p></div>
<div class="example-contents">
<div class="phpcode"><pre><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">stream_resolve_include_path</span><span style="color: #007700">(</span><span style="color: #DD0000">"test.php"</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</pre></div>
</div>
<div class="example-contents"><p>以上例程的输出类似于:</p></div>
<div class="example-contents screen">
<div class="cdata"><pre>
string(22) &quot;/var/www/html/test.php&quot;
</pre></div>
</div>
</div>
</p>
</div>
</div></div></div></body></html>