radius_get_tagged_attr_tag
(PECL radius >= 1.3.0)
radius_get_tagged_attr_tag — Extracts the tag from a tagged attribute
説明
radius_get_tagged_attr_tag
( string $data
) : int|false
If a tagged attribute has been returned from radius_get_attr(), radius_get_tagged_attr_data() will return the tag from the attribute.
パラメータ
data
- The tagged attribute to be decoded.
返り値
Returns the tag from the tagged attribute 失敗した場合に false
を返します.
例
例1 radius_get_tagged_attr_tag() example
<?phpwhile ($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_data() - Extracts the data from a tagged attribute