PHP的自帶checkdnsrr函數只在linux平台有效。使用慣了在window平台不能使用的話給兼容性帶來麻煩。
因此寫了個checkdnsrr模擬函數在window平台環境使用。
if (!function_exists('checkdnsrr ')) {
function checkdnsrr($host, $type) {
if(!empty($host) && !empty($type)) {
@exec('nslookup -type=' . escapeshellarg($type) . ' ' . escapeshellarg($host), $output);
foreach ($output as $k => $line) {
if(eregi('^' . $host, $line)) {
return true;
}
}
}
return false;
}
}