PHP code example of sunsgne / ip-attribution
1. Go to this page and download the library: Download sunsgne/ip-attribution library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sunsgne / ip-attribution example snippets
use workbunny\IpLocation\Location;
try {
$location = Location::$instance;
var_dump($location->city("1.1.1.1"));
}catch (\workbunny\IpLocation\exception\IpLocationException $exception){
}
use workbunny\IpLocation\Location;
try {
$location = new Location();
var_dump($location->city("1.1.1.1"));
}catch (\workbunny\IpLocation\exception\IpLocationException $exception){
}
use workbunny\IpLocation\Location;
try {
$location = new Location();
var_dump($location->asn("1.1.1.1"));
}catch (\workbunny\IpLocation\exception\IpLocationException $exception){
}
use workbunny\IpLocation\Location;
try {
$location = new Location();
var_dump($location->country("1.1.1.1"));
}catch (\workbunny\IpLocation\exception\IpLocationException $exception){
}
return [
'enable' => true,
//加载配置项
'config' => "default",
'default' => [
//语言
"language" => ['zh-CN'],
//mdb数据路径,(默认不指定,加载包内库)
"mdbFileDir" => "",
//未获取时默认标识
"defaultIdentifier" => "NON"
],
];
use workbunny\IpLocation\Location;
try {
$location = G(Location::class);
var_dump($location->country("1.1.1.1"));
var_dump($location->asn("1.1.1.1"));
var_dump($location->city("1.1.1.1"));
}catch (\workbunny\IpLocation\exception\IpLocationException $exception){
}
shell
./webman start
OR
php start.php start