PHP Doku:: Converts raw data to integer - function.radius-cvt-int.html

Verlauf / Chronik / History: (24) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzAuthentifizierungsdiensteRadiusRadius Funktionenradius_cvt_int

Ein Service von Reinhard Neidl - Webprogrammierung.

Radius Funktionen

<<radius_cvt_addr

radius_cvt_string>>

radius_cvt_int

(PECL radius >= 1.1.0)

radius_cvt_intConverts raw data to integer

Beschreibung

int radius_cvt_int ( string $data )

Beispiele

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

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)