HighSpeaker/.history/test_20221224202630.php

31 lines
943 B
PHP
Raw Permalink Normal View History

2022-12-24 19:40:40 +05:30
<?php
require_once __DIR__ . '/vendor/autoload.php';
require_once __DIR__ . '/support/bootstrap.php';
use Respect\Validation\Validator as v;
use yzh52521\EasyHttp\Response;
use GeoIp2\Database\Reader;
#$reader = new Reader(base_path().'/geoip/GeoLite2-ASN/GeoLite2-ASN.mmdb');
#$reader = new Reader(base_path().'/geoip/GeoLite2-City/GeoLite2-City.mmdb');
#$record = $reader->city('222.65.176.1');
#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('fe8::x');
#var_dump(gethostbyaddr('119.29.29.29'));
$whois = Http::get('https://api.devopsclub.cn/api/whoisquery?type=json&standard=true', ['domain' => "$content"])
#$whois = json_decode($whois);
print_r($whois);
?>