<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.radius.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'function.radius-get-attr.php',
    1 => 'radius_get_attr',
    2 => 'Extracts an attribute',
  ),
  'up' => 
  array (
    0 => 'ref.radius.php',
    1 => 'Radius Функції',
  ),
  'prev' => 
  array (
    0 => 'function.radius-demangle-mppe-key.php',
    1 => 'radius_demangle_mppe_key',
  ),
  'next' => 
  array (
    0 => 'function.radius-get-tagged-attr-data.php',
    1 => 'radius_get_tagged_attr_data',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/radius/functions/radius-get-attr.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.radius-get-attr" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">radius_get_attr</h1>
  <p class="verinfo">(PECL radius &gt;= 1.1.0)</p><p class="refpurpose"><span class="refname">radius_get_attr</span> &mdash; <span class="dc-title">Extracts an attribute</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.radius-get-attr-description">
  <h3 class="title">Опис</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>radius_get_attr</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$radius_handle</code></span>): <span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span></div>

  <p class="para rdfs-comment">
   Like Radius requests, each response may contain zero or more attributes.
   After a response has been received successfully by
   <span class="function"><a href="function.radius-send-request.php" class="function">radius_send_request()</a></span>, its attributes can be extracted
   one by one using <span class="function"><strong>radius_get_attr()</strong></span>. Each time
   <span class="function"><strong>radius_get_attr()</strong></span> is called, it gets the next attribute
   from the current response.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.radius-get-attr-parameters">
  <h3 class="title">Параметри</h3>
  <p class="para">
   <dl>
    <dt>
<code class="parameter">radius_handle</code></dt>
<dd><p class="para">RADIUS-ресурс.</p></dd>
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.radius-get-attr-returnvalues">
  <h3 class="title">Значення, що повертаються</h3>
  <p class="para">
   Returns an associative array containing the attribute-type and the data, or
   error number &lt;= 0.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.radius-get-attr-examples">
  <h3 class="title">Приклади</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Приклад #1 <span class="function"><strong>radius_get_attr()</strong></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #007700">while (</span><span style="color: #0000BB">$resa </span><span style="color: #007700">= </span><span style="color: #0000BB">radius_get_attr</span><span style="color: #007700">(</span><span style="color: #0000BB">$res</span><span style="color: #007700">)) {<br /><br />    if (!</span><span style="color: #0000BB">is_array</span><span style="color: #007700">(</span><span style="color: #0000BB">$resa</span><span style="color: #007700">)) {<br />        </span><span style="color: #0000BB">printf</span><span style="color: #007700">(</span><span style="color: #DD0000">"Error getting attribute: %s\n"</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">));<br />        exit;<br />    }<br /><br />    </span><span style="color: #0000BB">$attr </span><span style="color: #007700">= </span><span style="color: #0000BB">$resa</span><span style="color: #007700">[</span><span style="color: #DD0000">'attr'</span><span style="color: #007700">];<br />    </span><span style="color: #0000BB">$data </span><span style="color: #007700">= </span><span style="color: #0000BB">$resa</span><span style="color: #007700">[</span><span style="color: #DD0000">'data'</span><span style="color: #007700">];<br />    </span><span style="color: #0000BB">printf</span><span style="color: #007700">(</span><span style="color: #DD0000">"Got Attr:%d %d Bytes %s\n"</span><span style="color: #007700">, </span><span style="color: #0000BB">$attr</span><span style="color: #007700">, </span><span style="color: #0000BB">strlen</span><span style="color: #007700">(</span><span style="color: #0000BB">$data</span><span style="color: #007700">), </span><span style="color: #0000BB">bin2hex</span><span style="color: #007700">(</span><span style="color: #0000BB">$data</span><span style="color: #007700">));<br />}<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.radius-get-attr-seealso">
  <h3 class="title">Прогляньте також</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.radius-put-attr.php" class="function" rel="rdfs-seeAlso">radius_put_attr()</a> - Attaches a binary attribute</span></li>
    <li><span class="function"><a href="function.radius-get-vendor-attr.php" class="function" rel="rdfs-seeAlso">radius_get_vendor_attr()</a> - Extracts a vendor specific attribute</span></li>
    <li><span class="function"><a href="function.radius-put-vendor-attr.php" class="function" rel="rdfs-seeAlso">radius_put_vendor_attr()</a> - Attaches a vendor specific binary attribute</span></li>
    <li><span class="function"><a href="function.radius-send-request.php" class="function" rel="rdfs-seeAlso">radius_send_request()</a> - Sends the request and waits for a reply</span></li>
   </ul>
  </p>
 </div>

</div><?php manual_footer($setup); ?>