array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.radius-get-tagged-attr-tag.php', 1 => 'radius_get_tagged_attr_tag', 2 => 'Extracts the tag from a tagged attribute', ), 'up' => array ( 0 => 'ref.radius.php', 1 => 'Radius Функції', ), 'prev' => array ( 0 => 'function.radius-get-tagged-attr-data.php', 1 => 'radius_get_tagged_attr_data', ), 'next' => array ( 0 => 'function.radius-get-vendor-attr.php', 1 => 'radius_get_vendor_attr', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/radius/functions/radius-get-tagged-attr-tag.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

radius_get_tagged_attr_tag

(PECL radius >= 1.3.0)

radius_get_tagged_attr_tagExtracts 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

<?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);
}
?>

Прогляньте також