chrislim2888 / IP2Location-PHP-Module

This module is a PHP module that enables the user to find the country, region, city, coordinates, zip code, ISP, domain name, timezone, connection speed, IDD code, area code, weather station code, weather station name, mobile, usage types, address type, IAB category, etc that any IP address or host name originates from.
https://www.ip2location.com
MIT License
197 stars 69 forks source link

php8 compatibility #33

Closed stixpunk closed 3 years ago

stixpunk commented 3 years ago

function shmop_close() is deprecated and generate warning This function has no effect. Prior to PHP 8.0.0, this function was used to close the resource.

use shmop_close() only on version <8 should work if(PHP_MAJOR_VERSION < 8) { shmop_close(....); }

ip2location commented 3 years ago

Thanks for the feedback. It has been fixed.