Lines Matching refs:obj
49 $obj = mysqli_fetch_object($res);
50 if (($obj->ID !== "1") || ($obj->label !== "a") || (get_class($obj) != 'stdClass')) {
52 var_dump($obj);
65 $obj = $res->fetch_object('mysqli_fetch_object_test');
66 …if (($obj->ID !== "2") || ($obj->label !== "b") || ($obj->a !== NULL) || ($obj->b !== NULL) || (ge…
68 var_dump($obj);
81 $obj = $res->fetch_object('mysqli_fetch_object_construct', null);
83 …if (($obj->ID !== "3") || ($obj->label !== "c") || ($obj->a !== NULL) || ($obj->b !== NULL) || (ge…
85 var_dump($obj);
92 $obj = $res->fetch_object('mysqli_fetch_object_construct', array('a'));
93 …if (($obj->ID !== "4") || ($obj->label !== "d") || ($obj->a !== 'a') || ($obj->b !== NULL) || (get…
95 var_dump($obj);
98 $obj = $res->fetch_object('mysqli_fetch_object_construct', array('a', 'b'));
99 …if (($obj->ID !== "5") || ($obj->label !== "e") || ($obj->a !== 'a') || ($obj->b !== 'b') || (get_…
101 var_dump($obj);