php-src/ext/mysqli/tests/mysqli_fetch_array_assoc.phpt
Nikita Popov e3e67b721f Reindent more mysqli tests
Due to a bug in the tidy script, most tests did not actually get
reindented...
2020-11-25 16:07:16 +01:00

48 lines
982 B
PHP

--TEST--
mysqli_fetch_array()
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
require('table.inc');
if (!$res = mysqli_query($link, "SELECT * FROM test ORDER BY id LIMIT 5")) {
printf("[001] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
}
print "[002]\n";
var_dump(mysqli_fetch_array($res, MYSQLI_ASSOC));
mysqli_free_result($res);
if (!$res = mysqli_query($link, "SELECT id, label FROM test ORDER BY id LIMIT 5")) {
printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
}
print "[004]\n";
var_dump(mysqli_fetch_array($res, MYSQLI_ASSOC));
mysqli_free_result($res);
mysqli_close($link);
print "done!";
?>
--CLEAN--
<?php
require_once("clean_table.inc");
?>
--EXPECT--
[002]
array(2) {
["id"]=>
string(1) "1"
["label"]=>
string(1) "a"
}
[004]
array(2) {
["id"]=>
string(1) "1"
["label"]=>
string(1) "a"
}
done!