geoip_setup_custom_directory

(PECL geoip >= 1.1.0)

geoip_setup_custom_directory自定义 GeoIP 数据库的目录

说明

geoip_setup_custom_directory(string $path): void

geoip_setup_custom_directory() 函数将会更改 GeoIP 数据库的默认目录。这个设置和直接在 php 配置文件中设置的geoip.custom_directory参数效果是一样的。

参数

path

磁盘上 GeoIP 数据库的绝对路径。

返回值

没有返回值。

示例

示例 #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

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top