Friday, February 6, 2026
HomeLanguagesPHP | geoip_db_avail() Function

PHP | geoip_db_avail() Function

The geoip_db_avail() function is an inbuilt function in PHP which is used to check whether a GeoIP database is available or not. The function does not consider the proper existence of a file instead it checks whether it is readable or not.

Syntax:

bool geoip_db_avail( $database )

Parameters: This function accepts a single parameter $database which is integer type and it requires GeoIP database (GeoIP refers to the method of locating a computer terminal’s geographic location by identifying the terminal’s IP address. GeoIP can point a terminal location to a city, it requires the use of a GeoIP database).

Return Values: This function returns True on success (if the database exists) or False on failure (if the database is not found) and returns NULL if an error is encountered.

Below programs illustrate the geoip_db_avail() function in PHP:

Program 1:




<?php
// PHP code implementing geoip_db_avail() function
  
// Checks if the database entered is valid or not
if (geoip_db_avail(GEOIP_COUNTRY_EDITION))
    echo "True";
?>


Output:

True

Program 2:




<?php
// PHP code implementing geoip_db_avail() function
  
// Checks if the database entered is valid or not
if (geoip_db_avail(GEOIP_ORG_EDITION))
    echo "True";
?>


Output:

True

Related Articles:

Reference: http://php.net/manual/en/function.geoip-db-avail.php

RELATED ARTICLES

Most Popular

Dominic
32489 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6862 POSTS0 COMMENTS
Nicole Veronica
11983 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12073 POSTS0 COMMENTS
Shaida Kate Naidoo
6995 POSTS0 COMMENTS
Ted Musemwa
7236 POSTS0 COMMENTS
Thapelo Manthata
6946 POSTS0 COMMENTS
Umr Jansen
6930 POSTS0 COMMENTS