1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00

Merge branch 'PHP-7.1'

* PHP-7.1:
  #73594 tests only check the extra params if dns_get_record is successful
This commit is contained in:
Joe Watkins
2017-07-10 06:56:03 +01:00
2 changed files with 6 additions and 4 deletions

View File

@@ -19,8 +19,9 @@ if (empty($out)) die("skip local resolver does not return additional records");
<?php <?php
$auth = array(); $auth = array();
$additional = array(); $additional = array();
dns_get_record('php.net', DNS_MX, $auth, $additional); $res = dns_get_record('php.net', DNS_MX, $auth, $additional);
var_dump(empty($additional)); // only check $additional if dns_get_record is successful
var_dump(!empty($res) && empty($additional));
?> ?>
--EXPECT-- --EXPECT--
bool(false) bool(false)

View File

@@ -18,8 +18,9 @@ if (empty($out)) die("skip local resolver does not return authority records");
--FILE-- --FILE--
<?php <?php
$auth = array(); $auth = array();
dns_get_record('php.net', DNS_MX, $auth); $res = dns_get_record('php.net', DNS_MX, $auth);
var_dump(empty($auth)); // only check $auth if dns_get_record is successful
var_dump(!empty($res) && empty($auth));
?> ?>
--EXPECT-- --EXPECT--
bool(false) bool(false)