摘要: 1 <?php 2 /** 3 * function getmxrr 4 * 获取指定域名的MX记录信息 5 */ 6 function win_getmxrr($hostname, &$mxhosts, &$mxweight=false) 7 { 8 if (strtoupper(substr(PHP_OS, 0, 3)) != 'WIN') return; 9 if (!is_array ($mxhosts) ) $mxhosts = array(); 10 if (empty($hostname)) return; 11 ... 阅读全文
posted @ 2012-12-28 00:30 linzj 阅读(2322) 评论(0) 推荐(0)