mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-07 04:59:36 +00:00
1. 框架更新至5.8,并且其涉及代码进行修改; 2. 对支付的alipay组件针对php7.2/3进行修改; 3. 重构了节点信息获取逻辑;现在为实时请求; 4. 代码小细节和命名规范
23 lines
313 B
PHP
23 lines
313 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');
|
|
}
|
|
} |