PHP - geoip_database_info() 函数



geoip_database_info() 函数可以获取 GeoIP 数据库信息。

语法

string geoip_database_info ([ int $database = GEOIP_COUNTRY_EDITION ] )

geoip_database_info() 函数可以返回相应的 GeoIP 数据库版本,因为它是在二进制文件中定义的。如果此函数在没有参数的情况下被调用,它可以返回 GeoIP 免费国家版本的一个版本。

geoip_database_info() 函数可以返回相应的数据库版本,或者在错误时返回 null。

示例

<?php
   print geoip_database_info(GEOIP_COUNTRY_EDITION);
?>
php_function_reference.htm
广告