Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fixed bug #80077
This commit is contained in:
Nikita Popov 2020-09-08 10:01:03 +02:00
commit d0d9c3a980
2 changed files with 4 additions and 3 deletions

1
NEWS
View File

@ -30,6 +30,7 @@ PHP NEWS
- Standard:
. Fixed bug #79986 (str_ireplace bug with diacritics characters). (cmb)
. Fixed bug #80077 (getmxrr test bug). (Rainer Jung)
03 Sep 2020, PHP 7.4.10

View File

@ -11,9 +11,9 @@ if (substr(PHP_OS, 0, 3) == 'WIN') {
--FILE--
<?php
$domains = array(
'mx1.tests.php.net',
'mx2.tests.php.net',
'qa.php.net',
'mx1.tests.php.net.',
'mx2.tests.php.net.',
'qa.php.net.',
);
foreach ($domains as $domain) {
$result = getmxrr($domain, $hosts, $weights);