mirror of
https://github.com/php/php-src.git
synced 2025-01-06 02:43:34 +08:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
38 lines
665 B
PHP
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!
|