Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
radius_cvt_string

radius_cvt_string

(PECL)

radius_cvt_string -- Converts raw data to string

Description

string radius_cvt_string ( string data )

Examples

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

See Also

radius_cvt_addr()
radius_cvt_int()