PHP code example of chenyongze / ip2region
1. Go to this page and download the library: Download chenyongze/ip2region library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
chenyongze / ip2region example snippets
$ip2region = new Ip2Region();
$ip = '101.105.35.57';
$info = $ip2region->btreeSearch($ip);
var_export($info, true);
// array (
// 'city_id' => 2163,
// 'region' => '中国|华南|广东省|深圳市|鹏博士',
// )