According to the IP address, get the city information
github.com/xieshunv/jasmine
Source
Issues
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
Requires (Dev)
None
Suggests
Provides
Conflicts
Replaces
MIT ba8ee02cd0b9ec4795080b2b4d1183075a2f8653
ip-addressip-infoip-locationip-city
This package is auto-updated.
Last update: 2025-05-24 22:50:45 UTC
<?php use xieshunv\jasmine\Convertip; class test { public function __construct() { } /** * @param $ip */ public function getCityInfo($ip) { $conver = Convertip::getInstance(); $ipInfo = $conver::getCityByIp($ip); var_dump($ipInfo); } }