FUNC :: booleangetmxrr_win ( string domain_name, array & mx_hosts )
Return TRUE if any records are found, FALSE if not.
This function is the Windows NT version for "getmxrr()".
Example:
// get 'php.net' MX record(s)
$r = FUNC::is_win() ? FUNC::getmxrr_win('php.net', $mx) : getmxrr('php.net', $mx);
// print result
if ($r) print_r($mx);
else echo 'MX record(s) not found.';