PHP 8.4.0 RC4 available for testing

radius_get_tagged_attr_data

(PECL radius >= 1.3.0)

radius_get_tagged_attr_dataExtracts the data from a tagged attribute

Descrição

radius_get_tagged_attr_data(string $data): string|false

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

Parâmetros

data

The tagged attribute to be decoded.

Valor Retornado

Returns the data from the tagged attribute ou false em caso de falha.

Exemplos

Exemplo #1 radius_get_tagged_attr_data() 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);
}
?>

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top