1--TEST-- 2mysqli_fetch_object 3--SKIPIF-- 4<?php 5require_once('skipif.inc'); 6require_once('skipifconnectfailure.inc'); 7?> 8--FILE-- 9<?php 10 require_once("connect.inc"); 11 12 /*** test mysqli_connect 127.0.0.1 ***/ 13 $link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket); 14 15 mysqli_select_db($link, $db); 16 mysqli_query($link, "SET sql_mode=''"); 17 18 mysqli_query($link,"DROP TABLE IF EXISTS test_bind_fetch"); 19 mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 smallint unsigned, 20 c2 smallint unsigned, 21 c3 smallint, 22 c4 smallint, 23 c5 smallint, 24 c6 smallint unsigned, 25 c7 smallint) ENGINE=" . $engine); 26 27 $stmt = mysqli_prepare($link, "INSERT INTO test_bind_fetch VALUES (?,?,?,?,?,?,?)"); 28 mysqli_stmt_bind_param($stmt, "iiiiiii", $c1,$c2,$c3,$c4,$c5,$c6,$c7); 29 30 $c1 = -23; 31 $c2 = 35999; 32 $c3 = NULL; 33 $c4 = -500; 34 $c5 = -9999999; 35 $c6 = -0; 36 $c7 = 0; 37 38 mysqli_stmt_execute($stmt); 39 mysqli_stmt_close($stmt); 40 41 $result = mysqli_query($link, "SELECT * FROM test_bind_fetch"); 42 $test = mysqli_fetch_object($result); 43 mysqli_free_result($result); 44 45 var_dump($test); 46 47 mysqli_query($link, "DROP TABLE IF EXISTS test_bind_fetch"); 48 mysqli_close($link); 49 print "done!" 50?> 51--CLEAN-- 52<?php 53require_once("connect.inc"); 54if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) 55 printf("[c001] [%d] %s\n", mysqli_connect_errno(), mysqli_connect_error()); 56 57if (!mysqli_query($link, "DROP TABLE IF EXISTS test_bind_fetch")) 58 printf("[c002] Cannot drop table, [%d] %s\n", mysqli_errno($link), mysqli_error($link)); 59 60mysqli_close($link); 61?> 62--EXPECTF-- 63object(stdClass)#%d (7) { 64 ["c1"]=> 65 string(1) "0" 66 ["c2"]=> 67 string(5) "35999" 68 ["c3"]=> 69 NULL 70 ["c4"]=> 71 string(4) "-500" 72 ["c5"]=> 73 string(6) "-32768" 74 ["c6"]=> 75 string(1) "0" 76 ["c7"]=> 77 string(1) "0" 78} 79done! 80