Lines Matching refs:obj
20 $obj = mysqli_fetch_object($res);
21 if (($obj->ID !== "1") || ($obj->label !== "a") || (get_class($obj) != 'stdClass')) {
23 var_dump($obj);
36 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_test');
37 …if (($obj->ID !== "2") || ($obj->label !== "b") || ($obj->a !== NULL) || ($obj->b !== NULL) || (ge…
39 var_dump($obj);
54 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array());
55 …if (($obj->ID !== "3") || ($obj->label !== "c") || ($obj->a !== NULL) || ($obj->b !== NULL) || (ge…
57 var_dump($obj);
64 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a'));
65 …if (($obj->ID !== "4") || ($obj->label !== "d") || ($obj->a !== 'a') || ($obj->b !== NULL) || (get…
67 var_dump($obj);
73 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a', 'b'));
74 …if (($obj->ID !== "5") || ($obj->label !== "e") || ($obj->a !== 'a') || ($obj->b !== 'b') || (get_…
76 var_dump($obj);
104 if (false !== ($obj = @mysqli_fetch_object($res, 'mysqli_fetch_object_construct', 'a')))
125 var_dump($obj = new mysqli_fetch_object_private_constructor(1, 2));
128 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_private_constructor', array('a', 'b'));