php8.5
Home/ Manual/ radius / functions/ radius_cvt_int

radius_cvt_int

PHP function Edit on GitHub ✎

(PECL radius >= 1.1.0)

Converts raw data to integer

Description

radius_cvt_int(string $data): int

Converts raw data to integer

Parameters

data

Input data

Return Values

Returns the integer, retrieved from data.

Examples

radius_cvt_int() example

php
<?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_FRAMED_MTU:
        $mtu = radius_cvt_int($data);
        echo "MTU: $mtu<br>\n";
        break;
    }
}
?>

See Also

Source: reference/radius/functions/radius-cvt-int.xml · from the official PHP manual (php/doc-en)