calmw/ipseek

通过IP获取位置

v0.1.7 2023-04-22 09:09 UTC

This package is auto-updated.

Last update: 2024-09-23 16:25:07 UTC


README

  • composer包
  • 通过IP获取位置
  • php >= 8.0.26

安装

  • composer require calmw/ipseek --ignore-platform-reqs

使用方法

use Calm\IpSeek;

class Location
{
    public function getLocationByIp($ip): array
    {
        $ipSeek = new IpSeek();
        $ipSeek->getLocationByIp($ip);
    }
}

composer包开发流程