(PECL geoip >= 1.1.0)
geoip_setup_custom_directory — 自定义 GeoIP 数据库的目录
$path
) : voidgeoip_setup_custom_directory() 函数将会更改 GeoIP 数据库的默认目录。这个设置和直接在 php 配置文件中设置的geoip.custom_directory参数效果是一样的。
path
磁盘上 GeoIP 数据库的绝对路径。
没有返回值。
Example #1 geoip_setup_custom_directory() 例子:
以下例程将会更改 GeoIP 默认数据库的路径。
<?php
geoip_setup_custom_directory('/some/other/path');
print geoip_db_filename(GEOIP_COUNTRY_EDITION);
?>
以上例程会输出:
/some/other/path/GeoIP.dat