xieshunv/jasmine

According to the IP address, get the city information

v1.0.3 2020-10-24 08:39 UTC

This package is auto-updated.

Last update: 2025-05-24 22:50:45 UTC


README

composer require xieshunv/jasmine

<?php
    use xieshunv\jasmine\Convertip;
    class test
    {
        public function __construct()
        {
        }
        
        /**
         * @param $ip
         */
        public function getCityInfo($ip)
        {
            $conver = Convertip::getInstance();
            $ipInfo = $conver::getCityByIp($ip);
                    
            var_dump($ipInfo);
        }
    }