GeoIP

基于 高德开放平台 的 PHP IP地理定位组件。

安装

$ composer require byrnes2014/geoip -vvv

配置

在使用本扩展之前,你需要去 高德开放平台 注册账号,然后创建应用,获取应用的 API Key。

使用

use Byrnes2014GeoIPGeoIP; $key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxx'; $geoip = new GeoIP($key);

获取实时地理信息

$response = $geoip->getAddress('101.80.72.241');

示例:

{ "status":"1", "info":"OK", "infocode":"10000", "province":"上海市", "city":"上海市", "adcode":"310000", "rectangle":"120.8397067,30.77980118;122.1137989,31.66889673" }

获取 XML 格式返回值

第二个参数为返回值类型,可选 jsonxml,默认 json

$response = $geoip->getAddress('101.80.72.241', 'xml');

示例:

<?xml version="1.0" encoding="UTF-8"?> <response> <status>1</status> <info>OK</info> <infocode>10000</infocode> <province>上海市</province> <city>上海市</city> <adcode>310000</adcode> <rectangle>120.8397067,30.77980118;122.1137989,31.66889673</rectangle> </response>

参数说明

array|string getAddress(string $ip string $format = 'json')

$ip - IP地址,比如:“101.80.72.241”; $format - 输出的数据格式,默认为 json 格式,当 output 设置为 “xml” 时,输出的为 XML 格式的数据。

在 Laravel 中使用

在 Laravel 中使用也是同样的安装方式,配置写在 config/services.php 中:

. . . 'weather' => [ 'key' => env('GEOIP_API_KEY'), ],

然后在 .env 中配置 GEOIP_API_KEY

GEOIP_API_KEY=xxxxxxxxxxxxxxxxxxxxx

可以用两种方式来获取 Byrnes2014GeoIPGeoIP 实例:

方法参数注入

. . . public function edit(GeoIP $geoip) { $response = $geoip->getAddress('101.80.72.241'); } . . .

服务名访问

. . . public function edit() { $response = app('geoip')->getAddress('101.80.72.241'); } . . .

参考

高德开放IP定位接口

License

MIT

版权声明:

1、该文章(资料)来源于互联网公开信息,我方只是对该内容做点评,所分享的下载地址为原作者公开地址。
2、网站不提供资料下载,如需下载请到原作者页面进行下载。
3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考学习用!
4、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。