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);
93 $obj = $res->fetch_object('mysqli_fetch_object_construct', array('a'));
94 …if (($obj->ID !== "4") || ($obj->label !== "d") || ($obj->a !== 'a') || ($obj->b !== NULL) || (get…
96 var_dump($obj);
102 $obj = $res->fetch_object('mysqli_fetch_object_construct', array('a', 'b'));
103 …if (($obj->ID !== "5") || ($obj->label !== "e") || ($obj->a !== 'a') || ($obj->b !== 'b') || (get_…
105 var_dump($obj);