psp/ipgeobase

ipgeobase.ru 地理位置服务客户端

v1.0.0 2016-09-13 20:51 UTC

This package is not auto-updated.

Last update: 2024-09-23 14:21:44 UTC


README

ipgeobase.ru 地理位置服务客户端。

要求

IpGeoBase 依赖于 PHP 5.5+ 和 Guzzle 6+。

基本用法

use \GuzzleHttp\Client;
use \PSP\IpGeoBase\IpGeoBase;

$http = new Client();
$geo  = new IpGeoBase($http);

$response = $geo->request('144.206.192.6');

if ($response->getStatus()) {
    echo $response->getCity();
}

许可证

项目代码采用 MIT 许可证 - 详细信息请参阅 LICENSE 文件。