说明:
php版支持中文域名的whois查询类,代码摘自网络,upall整理后发布在此,不足的地方还请多提意见、多多包容。
演示:
用法:
用法一:
<?php include('whois.class.php'); $whois = new whois(); $result = $whois->getSte('upall.cn'); // 如果$result 恒等于 TRUE 这个域名可以注册,否则(恒等于FALSE)非超时即已注册 echo '[' . $whois ->domain . ']'; // 当前可询的域名 echo $whois ->msg; // 这里是可否注册的结果信息 ?>
用法二:
<?php include('whois.class.php'); $whois = new whois('upall.cn'); // 如果$whois === TRUE 这个域名可以注册,否则(===FALSE)非超时即已注册 echo '[' . $whois --->domain . ']'; // 当前可询的域名 echo $whois ->msg; ?>
下载:
<完>