mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02: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:
commit
cfacf84dc1
2 changed files with 6 additions and 4 deletions
|
@ -19,8 +19,9 @@ if (empty($out)) die("skip local resolver does not return additional records");
|
|||
<?php
|
||||
$auth = array();
|
||||
$additional = array();
|
||||
dns_get_record('php.net', DNS_MX, $auth, $additional);
|
||||
var_dump(empty($additional));
|
||||
$res = dns_get_record('php.net', DNS_MX, $auth, $additional);
|
||||
// only check $additional if dns_get_record is successful
|
||||
var_dump(!empty($res) && empty($additional));
|
||||
?>
|
||||
--EXPECT--
|
||||
bool(false)
|
||||
|
|
|
@ -18,8 +18,9 @@ if (empty($out)) die("skip local resolver does not return authority records");
|
|||
--FILE--
|
||||
<?php
|
||||
$auth = array();
|
||||
dns_get_record('php.net', DNS_MX, $auth);
|
||||
var_dump(empty($auth));
|
||||
$res = dns_get_record('php.net', DNS_MX, $auth);
|
||||
// only check $auth if dns_get_record is successful
|
||||
var_dump(!empty($res) && empty($auth));
|
||||
?>
|
||||
--EXPECT--
|
||||
bool(false)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue