VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php实现window平台的checkdnsrr函数

这篇文章主要介绍了php实现window平台的checkdnsrr函数,PHP的自带checkdnsrr函数只在linux平台有效,本文就模拟出了一个window下可以使用的checkdnsrr函数,需要的朋友可以参考下。

PHP的自带checkdnsrr函数只在linux平台有效。使用惯了在window平台不能使用的话给兼容性带来麻烦。

因此写了个checkdnsrr模拟函数在window平台环境使用。

  1. if (!function_exists('checkdnsrr ')) { 
  2.   function checkdnsrr($host$type) { 
  3.     if(!emptyempty($host) && !emptyempty($type)) { 
  4.       @exec('nslookup -type=' . escapeshellarg($type) . ' ' . escapeshellarg($host), $output); 
  5.       foreach ($output as $k => $line) { 
  6.         if(eregi('^' . $host$line)) { 
  7.           return true; 
  8.         } 
  9.       } 
  10.     } 
  11.     return false; 
  12.   } 
  13. }
  14.  



出处:http://www.phpfensi.com/php/20210527/15910.html


相关教程