mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-17 21:16:57 +08:00
145 lines
6.4 KiB
HTML
145 lines
6.4 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>Attaches a string attribute</title>
|
||
</head>
|
||
<body class="docs"><div id="layout">
|
||
<div id="layout-content"><div id="function.radius-put-string" class="refentry">
|
||
<div class="refnamediv">
|
||
<h1 class="refname">radius_put_string</h1>
|
||
<p class="verinfo">(PECL radius >= 1.1.0)</p><p class="refpurpose"><span class="refname">radius_put_string</span> — <span class="dc-title">Attaches a string attribute</span></p>
|
||
|
||
</div>
|
||
|
||
<div class="refsect1 description" id="refsect1-function.radius-put-string-description">
|
||
<h3 class="title">说明</h3>
|
||
<div class="methodsynopsis dc-description">
|
||
<span class="methodname"><strong>radius_put_string</strong></span>
|
||
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$radius_handle</code></span>
|
||
, <span class="methodparam"><span class="type">int</span> <code class="parameter">$type</code></span>
|
||
, <span class="methodparam"><span class="type">string</span> <code class="parameter">$value</code></span>
|
||
[, <span class="methodparam"><span class="type">int</span> <code class="parameter">$options</code><span class="initializer"> = 0</span></span>
|
||
[, <span class="methodparam"><span class="type">int</span> <code class="parameter">$tag</code></span>
|
||
]] ) : <span class="type">bool</span></div>
|
||
|
||
<p class="para rdfs-comment">
|
||
Attaches a string attribute to the current RADIUS request. In general,
|
||
<span class="function"><a href="radius_put_attr.html" class="function">radius_put_attr()</a></span> is a more useful function for
|
||
attaching string attributes, as it is binary safe.
|
||
</p>
|
||
<blockquote class="note"><p><strong class="note">Note</strong>: <p class="para">A request must be created via <span class="function"><a href="radius_create_request.html" class="function">radius_create_request()</a></span> before this function can be called.</p></p></blockquote>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 parameters" id="refsect1-function.radius-put-string-parameters">
|
||
<h3 class="title">参数</h3>
|
||
<p class="para">
|
||
<dl>
|
||
|
||
<dt>
|
||
<code class="parameter">radius_handle</code></dt>
|
||
<dd>
|
||
<p class="para">The RADIUS resource.</p></dd>
|
||
|
||
<dt>
|
||
<code class="parameter">type</code></dt>
|
||
<dd>
|
||
<p class="para">The attribute type.</p></dd>
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">value</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
The attribute value. This value is expected by the underlying library
|
||
to be null terminated, therefore this parameter is not binary safe.
|
||
</p>
|
||
</dd>
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">options</code></dt>
|
||
<dd>
|
||
<p class="para">A bitmask of the attribute options. The available options include <a href="radius.constants.options.html#constant.radius-option-tagged" class="link"><strong><code>RADIUS_OPTION_TAGGED</code></strong></a> and <a href="radius.constants.options.html#constant.radius-option-salt" class="link"><strong><code>RADIUS_OPTION_SALT</code></strong></a>.</p></dd>
|
||
|
||
<dt>
|
||
<code class="parameter">tag</code></dt>
|
||
<dd>
|
||
<p class="para">The attribute tag. This parameter is ignored unless the <a href="radius.constants.options.html#constant.radius-option-tagged" class="link"><strong><code>RADIUS_OPTION_TAGGED</code></strong></a> option is set.</p></dd>
|
||
|
||
</dl>
|
||
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 returnvalues" id="refsect1-function.radius-put-string-returnvalues">
|
||
<h3 class="title">返回值</h3>
|
||
<p class="para">
|
||
成功时返回 <strong><code>TRUE</code></strong>, 或者在失败时返回 <strong><code>FALSE</code></strong>。
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 changelog" id="refsect1-function.radius-put-string-changelog">
|
||
<h3 class="title">更新日志</h3>
|
||
<p class="para">
|
||
<table class="doctable informaltable">
|
||
|
||
<thead>
|
||
<tr>
|
||
<th>版本</th>
|
||
<th>说明</th>
|
||
</tr>
|
||
|
||
</thead>
|
||
|
||
<tbody class="tbody">
|
||
<tr>
|
||
<td>PECL radius 1.3.0</td>
|
||
<td>
|
||
The <code class="parameter">options</code> and <code class="parameter">tag</code>
|
||
parameters were added.
|
||
</td>
|
||
</tr>
|
||
|
||
</tbody>
|
||
|
||
</table>
|
||
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 examples" id="refsect1-function.radius-put-string-examples">
|
||
<h3 class="title">范例</h3>
|
||
<p class="para">
|
||
<div class="example" id="example-677">
|
||
<p><strong>Example #1 <span class="function"><strong>radius_put_string()</strong></span> example</strong></p>
|
||
<div class="example-contents">
|
||
<div class="phpcode"><pre><span style="color: #000000">
|
||
<span style="color: #0000BB"><?php<br /></span><span style="color: #007700">if (!</span><span style="color: #0000BB">radius_put_string</span><span style="color: #007700">(</span><span style="color: #0000BB">$res</span><span style="color: #007700">, </span><span style="color: #0000BB">RADIUS_USER_NAME</span><span style="color: #007700">, </span><span style="color: #DD0000">'billy'</span><span style="color: #007700">)) {<br /> echo </span><span style="color: #DD0000">'RadiusError:' </span><span style="color: #007700">. </span><span style="color: #0000BB">radius_strerror</span><span style="color: #007700">(</span><span style="color: #0000BB">$res</span><span style="color: #007700">). </span><span style="color: #DD0000">"\n<br />"</span><span style="color: #007700">;<br /> exit;<br />}<br /></span><span style="color: #0000BB">?></span>
|
||
</span>
|
||
</pre></div>
|
||
</div>
|
||
|
||
</div>
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 seealso" id="refsect1-function.radius-put-string-seealso">
|
||
<h3 class="title">参见</h3>
|
||
<p class="para">
|
||
<ul class="simplelist">
|
||
<li class="member"><span class="function"><a href="radius_put_int.html" class="function" rel="rdfs-seeAlso">radius_put_int()</a> - Attaches an integer attribute</span></li>
|
||
<li class="member"><span class="function"><a href="radius_put_vendor_int.html" class="function" rel="rdfs-seeAlso">radius_put_vendor_int()</a> - Attaches a vendor specific integer attribute</span></li>
|
||
<li class="member"><span class="function"><a href="radius_put_vendor_string.html" class="function" rel="rdfs-seeAlso">radius_put_vendor_string()</a> - Attaches a vendor specific string attribute</span></li>
|
||
</ul>
|
||
</p>
|
||
</div>
|
||
|
||
</div></div></div></body></html> |