Save
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
require_once __DIR__ . '/vendor/autoload.php';
|
||||
require_once __DIR__ . '/support/bootstrap.php';
|
||||
use Respect\Validation\Validator as v;
|
||||
|
||||
/**
|
||||
use GeoIp2\Database\Reader;
|
||||
$reader = new Reader(base_path().'/geoip/GeoLite2-City/GeoLite2-City.mmdb');
|
||||
|
||||
$record = $reader->city('38.240.134.22');
|
||||
|
||||
print_r($record);
|
||||
**/
|
||||
/**
|
||||
use support\Redis;
|
||||
$redis = Redis::connection('default');
|
||||
|
||||
#$redis->hset('User','admin',json_encode(['account' => 'admin', 'email' => 'admin@admin.com', 'passwd' => hash("sha256", 'admin123456'), 'name' => '管理员']));
|
||||
|
||||
var_dump($redis->hget('User','enoch'));
|
||||
**/
|
||||
$contenttype=v::ip()->validate('fe80::aa94:de54:7f51:9012');
|
||||
var_dump($contenttype);
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user