PHP Conference Japan 2024

geoip_setup_custom_directory

(PECL geoip >= 1.1.0)

geoip_setup_custom_directory设置 GeoIP 数据库的自定义目录

描述

geoip_setup_custom_directory(字符串 $path):

函数 geoip_setup_custom_directory() 将更改 GeoIP 数据库的默认目录。这等效于更改 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

添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top