作者 刘锟

update

... ... @@ -1031,7 +1031,13 @@ class Temp extends Command
}
$domain = $domain_info['domain'];
$check = [];
try {
$check = dns_get_record($domain, DNS_A);
} catch (\Exception $e) {
$this->output($domain . ' | ' . $e->getMessage());
}
$ip = $check[0]['ip'] ?? '';
$host = $check[0]['host'] ?? '';
if (strpos($host, 'globalso.com') === false) {
... ...