php-src/ext/mysqli/tests/069.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

38 lines
665 B
PHP

--TEST--
mysqli multi_query, next_result, more_results
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
require_once("connect.inc");
$mysql = new my_mysqli($host, $user, $passwd, $db, $port, $socket);
$mysql->multi_query('SELECT 1;SELECT 2');
do {
$res = $mysql->store_result();
if ($mysql->errno == 0) {
while ($arr = $res->fetch_assoc()) {
var_dump($arr);
}
$res->free();
}
if (!$mysql->more_results()) {
break;
}
} while (@$mysql->next_result());
$mysql->close();
print "done!";
?>
--EXPECT--
array(1) {
[1]=>
string(1) "1"
}
array(1) {
[2]=>
string(1) "2"
}
done!