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

88 lines
3.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>Checks if a stream is a local stream</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.stream-is-local" class="refentry">
<div class="refnamediv">
<h1 class="refname">stream_is_local</h1>
<p class="verinfo">(PHP 5 &gt;= 5.2.4, PHP 7)</p><p class="refpurpose"><span class="refname">stream_is_local</span> &mdash; <span class="dc-title">Checks if a stream is a local stream</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.stream-is-local-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>stream_is_local</strong></span>
( <span class="methodparam"><span class="type"><a href="language.pseudo-types.html#language.types.mixed" class="type mixed">mixed</a></span> <code class="parameter">$stream_or_url</code></span>
) : <span class="type">bool</span></div>
<p class="para rdfs-comment">
Checks if a stream, or a URL, is a local one or not.
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.stream-is-local-parameters">
<h3 class="title">参数</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">stream_or_url</code></dt>
<dd>
<p class="para">
The stream <span class="type"><a href="language.types.resource.html" class="type resource">resource</a></span> or URL to check.
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.stream-is-local-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
成功时返回 <strong><code>TRUE</code></strong> 或者在失败时返回 <strong><code>FALSE</code></strong>
</p>
</div>
<div class="refsect1 examples" id="refsect1-function.stream-is-local-examples">
<h3 class="title">范例</h3>
<p class="para">
<div class="example" id="stream-context-get-options.example.basic">
<p><strong>Example #1 <span class="function"><strong>stream_is_local()</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_is_local</span><span style="color: #007700">(</span><span style="color: #DD0000">"http://example.com"</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">stream_is_local</span><span style="color: #007700">(</span><span style="color: #DD0000">"/etc"</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>
bool(false)
bool(true)
</pre></div>
</div>
</div>
</p>
</div>
</div></div></div></body></html>