radius_get_attr
radius_get_attr
Extracts an attribute
mixed **radius_get_attr** resource $radius_handle
Like Radius requests, each response may contain zero or more attributes.
After a response has been received successfully by
, its attributes can be extracted
one by one using . Each time
is called, it gets the next attribute
from the current response.
radius_send_request``radius_get_attr``radius_get_attr
Returns an associative array containing the attribute-type and the data, or error number <= 0.
Voorbeeld: example
<?php
while ($resa = radius_get_attr($res)) {
if (!is_array($resa)) {
printf("Error getting attribute: %s\n", radius_strerror($res));
exit;
}
$attr = $resa['attr'];
$data = $resa['data'];
printf("Got Attr:%d %d Bytes %s\n", $attr, strlen($data), bin2hex($data));
}
?>
radius_put_attr``radius_get_vendor_attr``radius_put_vendor_attr``radius_send_request