File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ mysqli_fetch_object
4343 mysqli_close ($ link );
4444?>
4545--EXPECT--
46- object()(7) {
46+ object(stdClass )(7) {
4747 ["c1"]=>
4848 string(1) "0"
4949 ["c2"]=>
Original file line number Diff line number Diff line change @@ -19,17 +19,17 @@ mysqli_prepare_result
1919 $ result = mysqli_prepare_result ($ stmt );
2020
2121 $ fields = mysqli_fetch_fields ($ result );
22- var_dump ($ fields );
23-
2422 mysqli_free_result ($ result );
2523
24+ var_dump ($ fields );
25+
2626 mysqli_stmt_close ($ stmt );
2727 mysqli_close ($ link );
2828?>
2929--EXPECT--
3030array(2) {
3131 [0]=>
32- object()(9) {
32+ object(stdClass )(9) {
3333 ["name"]=>
3434 string(3) "foo"
3535 ["orgname"]=>
@@ -50,7 +50,7 @@ array(2) {
5050 int(0)
5151 }
5252 [1]=>
53- object()(9) {
53+ object(stdClass )(9) {
5454 ["name"]=>
5555 string(3) "bar"
5656 ["orgname"]=>
You can’t perform that action at this time.
0 commit comments