1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 10:43:30 +02:00

Merge branch 'PHP-7.4'

This commit is contained in:
Nikita Popov
2019-06-14 16:56:42 +02:00
+23 -9
View File
@@ -9,8 +9,8 @@ if (!extension_loaded('curl')) { print("skip"); }
--FILE--
<?php
$urls = array(
"bugs.php.net",
"pear.php.net"
"file://".__DIR__."/curl_testdata1.txt",
"file://".__DIR__."/curl_testdata2.txt",
);
$mh = curl_multi_init();
@@ -22,16 +22,30 @@ foreach ($urls as $i => $url) {
do {
$status = curl_multi_exec($mh, $active);
$info = curl_multi_info_read($mh);
if (false !== $info) {
var_dump(is_array($info));
}
} while ($status === CURLM_CALL_MULTI_PERFORM || $active);
while ($info = curl_multi_info_read($mh)) {
var_dump($info);
}
foreach ($urls as $i => $url) {
curl_close($conn[$i]);
}
?>
--EXPECT--
bool(true)
bool(true)
--EXPECTF--
array(3) {
["msg"]=>
int(%d)
["result"]=>
int(%d)
["handle"]=>
resource(%d) of type (curl)
}
array(3) {
["msg"]=>
int(%d)
["result"]=>
int(%d)
["handle"]=>
resource(%d) of type (curl)
}