dgyun/ip_helper

获取IP地址和IP数据库

dev-master 2023-10-25 02:28 UTC

This package is not auto-updated.

Last update: 2024-09-25 12:29:14 UTC


README

本库IP地址基于ip2region简单整合,方便PHP项目使用Composer来安装。

通过Composer安装

composer require dgyun/ip_helper

在项目中快速调用

use Dgyun\IpHelper\Ip;

$result = (new Ip())->location('0.0.0.0');

var_dump($result);

获取客户端IP

use Dgyun\IpHelper\Ip;

$result = (new Ip())->get_client_ip();

$result = (new Ip())->get_client_ip_ali_cdn();

$result = (new Ip())->get_client_ip_tencent_cdn();
var_dump($result);