Lines Matching refs:obj
40 $obj = mysqli_fetch_object($res);
41 if (($obj->ID !== "1") || ($obj->label !== "a") || (get_class($obj) != 'stdClass')) {
43 var_dump($obj);
56 $obj = $res->fetch_object('mysqli_fetch_object_test');
57 …if (($obj->ID !== "2") || ($obj->label !== "b") || ($obj->a !== NULL) || ($obj->b !== NULL) || (ge…
59 var_dump($obj);
71 $obj = $res->fetch_object('mysqli_fetch_object_construct', null);
73 …if (($obj->ID !== "3") || ($obj->label !== "c") || ($obj->a !== NULL) || ($obj->b !== NULL) || (ge…
75 var_dump($obj);
78 $obj = $res->fetch_object('mysqli_fetch_object_construct', array('a'));
79 …if (($obj->ID !== "4") || ($obj->label !== "d") || ($obj->a !== 'a') || ($obj->b !== NULL) || (get…
81 var_dump($obj);
84 $obj = $res->fetch_object('mysqli_fetch_object_construct', array('a', 'b'));
85 …if (($obj->ID !== "5") || ($obj->label !== "e") || ($obj->a !== 'a') || ($obj->b !== 'b') || (get_…
87 var_dump($obj);