1
0
mirror of https://gitee.com/zhc02/timely_service.git synced 2025-08-02 12:34:48 +08:00
2019-10-30 23:42:52 +08:00

15 lines
267 B
PHP

<?php
require 'Ip2Region.php';
$ip2region = new Ip2Region();
$ip = '101.105.35.57';
$info = $ip2region->btreeSearch($ip);
var_export($info);
// array (
// 'city_id' => 2163,
// 'region' => '中国|华南|广东省|深圳市|鹏博士',
// )