Query: geoip_id_by_name
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
GEOIP_ID_BY_NAME(3) 1 GEOIP_ID_BY_NAME(3) geoip_id_by_name - Get the Internet connection typeSYNOPSISint geoip_id_by_name (string $hostname)DESCRIPTIONThe geoip_id_by_name(3) 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: o GEOIP_UNKNOWN_SPEED o GEOIP_DIALUP_SPEED o GEOIP_CABLEDSL_SPEED o GEOIP_CORPORATE_SPEEDPARAMETERSo $hostname - The hostname or IP address whose connection type is to be looked-up.RETURN VALUESReturns the connection type.EXAMPLESExample #1 A geoip_id_by_name(3) 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'; } ?> The above example will output: The connection type is corporate PHP Documentation Group GEOIP_ID_BY_NAME(3)
Related Man Pages |
---|
geoip_continent_code_by_name(3) - php |
geoip_id_by_name(3) - php |
json_last_error(3) - php |
pg_version(3) - php |
ssh2_methods_negotiated(3) - php |
Similar Topics in the Unix Linux Community |
---|
greater than less than in case |
Problems with Internet setup |
Crontab |
Suse Linux 11.4 Internet connection |
Missing Logic Looping Through Switch Statement |