Files
ProxyPanel/app/Components/IPIP.php
Bretton 66b0f7a561 1.2 版本 界面优化 与 BUG修复
1. 修复节点信息获取错误的问题
2. 优化首页公告显示
3. 修复回复工单时按回车导致报错的问题
4. 修改用户编辑与添加排版
5. 修复潜在的IE兼容问题
6. 统一Table元素格式
7. 优化返利界面
8. 添加了封禁时间倒计时
9. 对非付费用户,首页添加提示购买宣传语
2020-08-05 03:20:19 +08:00

25 lines
335 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);
$result = $loc->findMap($ip, 'CN');
return $result;
}
}