Wednesday, July 3, 2024
HomeLanguagesPhpPHP | 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

Nicole Veronica Rubhabha
Nicole Veronica Rubhabha
A highly competent and organized individual DotNet developer with a track record of architecting and developing web client-server applications. Recognized as a personable, dedicated performer who demonstrates innovation, communication, and teamwork to ensure quality and timely project completion. Expertise in C#, ASP.Net, MVC, LINQ, EF 6, Web Services, SQL Server, MySql, Web development,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments