Unless you have old code that needs this, you might be better off using GeoIP2.
Example for Debian (apt) and PHP 8.2
apt install php8.2-dev geoip-bin geoip-database libgeoip-dev
git clone https://github.com/rlerdorf/geoip.git geoip && cd geoip
phpize8.2
./configure
make
make test
make install- Add line
extension=geoip.soto your (PHP 8.2)php.ini - Restart your webserver e.g.
service apache2 restart - If using FPM:
service php8.2-fpm restart