mirror of
https://github.com/chinayin/ip2region-sdk-php.git
synced 2025-04-05 20:11:16 +08:00
39 lines
912 B
PHP
39 lines
912 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Ip2Region package.
|
|
*
|
|
* Copyright 2022 The Ip2Region Authors. All rights reserved.
|
|
* Use of this source code is governed by a Apache2.0-style
|
|
* license that can be found in the LICENSE file.
|
|
*
|
|
* @link https://github.com/chinayin/ip2region-sdk-php
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace ip2region\Tests;
|
|
|
|
use ip2region\Ip2Region;
|
|
|
|
class TestCase extends \PHPUnit\Framework\TestCase
|
|
{
|
|
public static function now()
|
|
{
|
|
return microtime(true) * 1000;
|
|
}
|
|
|
|
public function test()
|
|
{
|
|
$ip = '1.2.3.4';
|
|
try {
|
|
$region = Ip2Region::newWithFileOnly()->search($ip);
|
|
var_dump($region);
|
|
} catch (\Exception $e) {
|
|
var_dump($e->getMessage());
|
|
}
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|