Files
ProxyPanel/app/Components/QQWry.php
兔姬桑 a0922521cf 初始化
2020-08-05 03:19:28 +08:00

22 lines
343 B
PHP

<?php
namespace App\Components;
use itbdw\Ip\IpLocation;
class QQWry
{
/**
* 查询IP地址的详细信息
*
* @param string $ip IPv4
*
* @return array
*/
public static function ip($ip)
{
$filePath = public_path('qqwry.dat');
return IpLocation::getLocation($ip, $filePath);
}
}