检索数据的命令

<?php
//just to get keys
$data=file_get_contents('http://check2ip.com/');
$dataslip=explode("dns5",$data);
$prmkey=substr($dataslip[1],1,8);

//get DNS Servers of check2ip.com
$dnsservers=file_get_contents('http://check2ip.com/?prm='.$prmkey);

echo $dnsservers;
?>


它返回了$ prmkey,但没有返回$ dnsservers

我如何获得DNS服务器!

最佳答案

<?php
$result = dns_get_record('http://check2ip.com/?prm='.$prmkey);
print_r($result);
?>


试试看

07-23 01:56