= 1.1.0)geoip_setup_custom_directory — 自定義 GeoIP 數(shù)據(jù)庫的目錄說明geoip_setup_custom_directory(string $path): voidgeoi">
(PECL geoip >= 1.1.0)
geoip_setup_custom_directory — 自定義 GeoIP 數(shù)據(jù)庫的目錄
$path
): voidgeoip_setup_custom_directory() 函數(shù)將會更改 GeoIP 數(shù)據(jù)庫的默認(rèn)目錄。這個(gè)設(shè)置和直接在 php 配置文件中設(shè)置的geoip.custom_directory參數(shù)效果是一樣的。
path
磁盤上 GeoIP 數(shù)據(jù)庫的絕對路徑。
沒有返回值。
示例 #1 geoip_setup_custom_directory() 例子:
以下例程將會更改 GeoIP 默認(rèn)數(shù)據(jù)庫的路徑。
<?php
geoip_setup_custom_directory('/some/other/path');
print geoip_db_filename(GEOIP_COUNTRY_EDITION);
?>
以上例程會輸出:
/some/other/path/GeoIP.dat