Files
ProxyPanel/app/Components/IPIP.php
兔姬桑 8ae52d8a2f 格式化
2020-08-05 03:20:33 +08:00

22 lines
316 B
PHP

<?php
namespace App\Components;
use ipip\db\City;
class IPIP {
/**
* 查询IP地址的详细信息
*
* @param string $ip IPv4
*
* @return array|null
*/
public static function ip($ip) {
$filePath = public_path('ipip.ipdb');
$loc = new City($filePath);
return $loc->findMap($ip, 'CN');
}
}