[php]代码库
$domain = htmlspecialchars(trim($_GET['domain']));
if(!empty($domain)){
$do = "http://panda.www.net.cn/cgi-bin/check.cgi?area_domain=" . $domain;//调用接口
$xml_data = file_get_contents($do);
$xml_arr = (array)simplexml_load_string($xml_data);//simplexml_load_string()函数对XML 字符串载入对象中。再用(array)变成数组
if(is_array($xml_arr)&&!empty($xml_arr)){
$info=explode(":",$xml_arr["original"]);
if($info[0]==210){
$result = '该域名可以注册';
}else if($info[0]==211){
$result = '该域名已经被注册';
}else if($info[0]==212){
$result = '域名参数错误,请输入的域名格式';
}else if($info[0]==214){
$result='查询异常,请稍后再试';
}else{
$result='该域名不在本网站注册';
}
}
}
echo $domain.$result;
[源代码打包下载]