1--TEST--
2getmxrr() test
3--SKIPIF--
4<?php
5if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
6if (substr(PHP_OS, 0, 3) == 'WIN') {
7    die('skip: no Windows support');
8}
9?>
10--FILE--
11<?php
12$domains = array( 'mx1.tests.php.net', 'mx2.tests.php.net' );
13foreach ( $domains as $domain )
14{
15    if ( getmxrr( $domain, $hosts, $weights ) )
16    {
17        echo "Hosts: " . count( $hosts ) . ", weights: " . count( $weights ) . "\n";
18    }
19}
20?>
21--EXPECT--
22Hosts: 1, weights: 1
23Hosts: 2, weights: 2
24