radius_get_tagged_attr_data

(PECL radius >= 1.3.0)
Extracts the data from a tagged attribute
string radius_get_tagged_attr_data ( string $data )

If a tagged attribute has been returned from radius_get_attr(), radius_get_tagged_attr_data() will return the data from the attribute.

Parameters:
data

The tagged attribute to be decoded.

Returns:

Returns the data from the tagged attribute or FALSE on failure.

Examples:
radius_get_tagged_attr_data() example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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);
}
?>
See also:

radius_get_attr() -

radius_get_tagged_attr_tag() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.