PHP Doku:: Get the Internet connection type - function.geoip-id-by-name.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenGeo IP LocationGeoIP Funktionengeoip_id_by_name

Ein Service von Reinhard Neidl - Webprogrammierung.

GeoIP Funktionen

<<geoip_db_get_all_info

geoip_isp_by_name>>

geoip_id_by_name

(PECL geoip >= 0.2.0)

geoip_id_by_nameGet the Internet connection type

Beschreibung

int geoip_id_by_name ( string $hostname )

The geoip_id_by_name() function will return the Internet connection type corresponding to a hostname or an IP address.

The return value is numeric and can be compared to the following constants:

  • GEOIP_UNKNOWN_SPEED
  • GEOIP_DIALUP_SPEED
  • GEOIP_CABLEDSL_SPEED
  • GEOIP_CORPORATE_SPEED

Parameter-Liste

hostname

The hostname or IP address whose connection type is to be looked-up.

Rückgabewerte

Returns the connection type.

Beispiele

Beispiel #1 A geoip_id_by_name() example

This will output the connection type of the host example.com.

<?php
$netspeed 
geoip_id_by_name('www.example.com');

echo 
'The connection type is ';

switch (
$netspeed) {
    case 
GEOIP_DIALUP_SPEED:
        echo 
'dial-up';
        break;
    case 
GEOIP_CABLEDSL_SPEED:
        echo 
'cable or DSL';
        break;
    case 
GEOIP_CORPORATE_SPEED:
        echo 
'corporate';
        break;
    case 
GEOIP_UNKNOWN_SPEED:
    default:
        echo 
'unknown';
}
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

The connection type is corporate


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",...)