radius_get_tagged_attr_data
radius_get_tagged_attr_data
Extracts the data from a tagged attribute
**radius_get_tagged_attr_data** string $data
If a tagged attribute has been returned from
,
will return the data from
the attribute.
radius_get_attr``radius_get_tagged_attr_data
dataThe tagged attribute to be decoded.
Returns the data from the tagged attribute return.falseforfailure.
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'];
$tag = radius_get_tagged_attr_tag($data);
$value = radius_get_tagged_attr_data($data);
printf("Got tagged attribute with tag %d and value %s\n", $tag, $value);
}
?>
radius_get_attr``radius_get_tagged_attr_tag