php トップレベル「com」のドメイン情報
2011/05/26
「PEARのNet_Whois」ってヤツでドメイン情報の取得をしているんだけどトップレベルが「com」ってのはひと手間かければ取得できる感じ。
まずは、普通にNet_Whoisにクエリを投げたときのお返事。
To single out one record, look it up with “xxx”, where xxx is one of the of the records displayed above. If the records are the same, look them up with “=xxx” to receive a full display for each record.
なんか…「=」をつけろっていってるような感じだね。
$whois = new Net_Whois();
echo $whois->query("xxx.com");
echo $whois->query("xxx.com");
↓↓↓
$whois = new Net_Whois();
echo $whois->query("=xxx.com");