Lines Matching refs:obj
29 $obj = mysqli_fetch_object($res);
30 if (($obj->ID !== "1") || ($obj->label !== "a") || (get_class($obj) != 'stdClass')) {
32 var_dump($obj);
45 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_test');
46 …if (($obj->ID !== "2") || ($obj->label !== "b") || ($obj->a !== NULL) || ($obj->b !== NULL) || (ge…
48 var_dump($obj);
62 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array());
64 …if (($obj->ID !== "3") || ($obj->label !== "c") || ($obj->a !== NULL) || ($obj->b !== NULL) || (ge…
66 var_dump($obj);
69 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a'));
70 …if (($obj->ID !== "4") || ($obj->label !== "d") || ($obj->a !== 'a') || ($obj->b !== NULL) || (get…
72 var_dump($obj);
75 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a', 'b'));
76 …if (($obj->ID !== "5") || ($obj->label !== "e") || ($obj->a !== 'a') || ($obj->b !== 'b') || (get_…
78 var_dump($obj);
102 if (false !== ($obj = @mysqli_fetch_object($res, 'mysqli_fetch_object_construct', 'a')))
123 var_dump($obj = new mysqli_fetch_object_private_constructor(1, 2));
126 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_private_constructor', array('a', 'b'));