Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18538 программистов и 1740 роботов. Сейчас ищут 1326 программистов ...
geoip_setup_custom_directory - Set a custom directory for the GeoIP database.
Вернуться к: GeoIP Функции
geoip_setup_custom_directory
(PECL geoip >= 1.1.0)
geoip_setup_custom_directory — Set a custom directory for the GeoIP database.
Описание
void geoip_setup_custom_directory
( string
$path
)The geoip_setup_custom_directory() function will change the default directory of the GeoIP database. This is equivalent to changing geoip.custom_directory.
Список параметров
-
path
-
The full path of where the GeoIP database is on disk.
Возвращаемые значения
Эта функция не возвращает значения после выполнения.
Примеры
Пример #1 A geoip_setup_custom_directory() example
This will change the GeoIP default database path.
<?php
geoip_setup_custom_directory('/some/other/path');
print geoip_db_filename(GEOIP_COUNTRY_EDITION);
?>
Результат выполнения данного примера:
/some/other/path/GeoIP.dat
Вернуться к: GeoIP Функции