Files
ProxyPanel/app/Components/IPIP.php
2020-08-05 03:51:29 +08:00

22 lines
326 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): ?array {
$filePath = database_path('ipip.ipdb');
$loc = new City($filePath);
return $loc->findMap($ip, 'CN');
}
}