mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-18 13:57:03 +08:00
89 lines
3.7 KiB
HTML
89 lines
3.7 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.stream-context-get-options" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">stream_context_get_options</h1>
|
|
<p class="verinfo">(PHP 4 >= 4.3.0, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">stream_context_get_options</span> — <span class="dc-title">获取资源流/数据包/上下文的参数</span></p>
|
|
|
|
</div>
|
|
|
|
<div class="refsect1 description" id="refsect1-function.stream-context-get-options-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>stream_context_get_options</strong></span>
|
|
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$stream_or_context</code></span>
|
|
) : <span class="type">array</span></div>
|
|
|
|
<p class="simpara">
|
|
返回指定资源流或者上下文的数组参数。
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.stream-context-get-options-parameters">
|
|
<h3 class="title">参数</h3>
|
|
<p class="para">
|
|
<dl>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">stream_or_context</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
获取参数信息的 <span class="type"><span class="type stream">stream</span></span> 或者 <span class="type"><span class="type context">context</span></span> 。
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.stream-context-get-options-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
返回一个包含有原参数的关联数组。
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 examples" id="refsect1-function.stream-context-get-options-examples">
|
|
<h3 class="title">范例</h3>
|
|
<p class="para">
|
|
<div class="example" id="example-4815">
|
|
<p><strong>Example #1 <span class="function"><strong>stream_context_get_options()</strong></span> 的例子</strong></p>
|
|
<div class="example-contents">
|
|
<div class="phpcode"><pre><span style="color: #000000">
|
|
<span style="color: #0000BB"><?php<br />$params </span><span style="color: #007700">= array(</span><span style="color: #DD0000">"method" </span><span style="color: #007700">=> </span><span style="color: #DD0000">"POST"</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">stream_context_get_default</span><span style="color: #007700">(array(</span><span style="color: #DD0000">"http" </span><span style="color: #007700">=> </span><span style="color: #0000BB">$params</span><span style="color: #007700">));<br /><br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">stream_context_get_options</span><span style="color: #007700">(</span><span style="color: #0000BB">stream_context_get_default</span><span style="color: #007700">()));<br /><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(1) {
|
|
["http"]=>
|
|
array(1) {
|
|
["method"]=>
|
|
string(4) "POST"
|
|
}
|
|
}
|
|
</pre></div>
|
|
</div>
|
|
</div>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
|
|
</div></div></div></body></html> |