Skip to content

Commit 190ec36

Browse files
committed
Update curl_multi_info_read.phpt
1 parent 4e07a0e commit 190ec36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/curl/tests/curl_multi_info_read.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ do {
2626
$status = curl_multi_exec($mh, $active);
2727
$info = curl_multi_info_read($mh);
2828
if (false !== $info) {
29-
print((is_array($info)) ? ("bool(true)\n") : ("bool(false)\n"));
29+
var_dump(is_array($info));
3030
}
3131
} while ($status === CURLM_CALL_MULTI_PERFORM || $active);
3232

0 commit comments

Comments
 (0)