当前位置:Gxlcms > PHP教程 > PHP调用万网接口实现域名查询的功能

PHP调用万网接口实现域名查询的功能

时间:2021-07-01 10:21:17 帮助过:24人阅读

php代码:

  1. //得到顶级域名

  2. $ext=$_POST['ext'];
  3. //得到二级域名
  4. $dns = $_POST['dns'];

  5. //print_r($ext);

  6. //$domain = $dns . "." . $ext[0];
  7. //echo $domain;

  8. //遍历所有的域名

  9. foreach ($ext as $value) {
  10. //组合域名
  11. $domain = $dns . "." . $value;

  12. //查询:

  13. echo $domain ;

  14. $do = "http://panda.www.net.cn/cgi-bin/check.cgi?area_domain=" . $domain;

  15. $xml_data = file_get_contents($do);
  16. $result_arr = (array) simplexml_load_string($xml_data);

  17. $returncode=$result_arr['returncode'];

  18. $key=$result_arr['key'];

  19. $original=$result_arr['original'];

  20. $status= substr($original,0,3);

  21. if($status=="210"){

  22. echo ":恭喜您,可以注册";
  23. }else if($status=="211"){
  24. echo ":已经注册";
  25. }else if($status=="212"){
  26. echo ":参数错误";
  27. }
  28. echo '
    ';
  29. }
  30. ?>

人气教程排行