CakeFest 2024: The Official CakePHP Conference

radius_cvt_string

(PECL radius >= 1.1.0)

radius_cvt_stringConverts raw data to string

Açıklama

radius_cvt_string(string $data): string

Converts raw data to string

Bağımsız Değişkenler

data

Input data

Dönen Değerler

Returns the string, retrieved from data.

Örnekler

Örnek 1 radius_cvt_string() 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'];

switch (
$attr) {

case
RADIUS_FILTER_ID:
$id = radius_cvt_string($data);
echo
"Filter ID: $id<br>\n";
break;
}
}
?>

Ayrıca Bakınız

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top