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 数据库的默认目录。这等效于更改 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