Lines Matching refs:obj
27 $obj = mysqli_fetch_object($res);
28 if (($obj->ID !== "1") || ($obj->label !== "a") || (get_class($obj) != 'stdClass')) {
30 var_dump($obj);
43 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_test');
44 …if (($obj->ID !== "2") || ($obj->label !== "b") || ($obj->a !== NULL) || ($obj->b !== NULL) || (ge…
46 var_dump($obj);
60 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', null);
62 …if (($obj->ID !== "3") || ($obj->label !== "c") || ($obj->a !== NULL) || ($obj->b !== NULL) || (ge…
64 var_dump($obj);
67 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a'));
68 …if (($obj->ID !== "4") || ($obj->label !== "d") || ($obj->a !== 'a') || ($obj->b !== NULL) || (get…
70 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);
100 if (false !== ($obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', 'a')))
121 var_dump($obj = new mysqli_fetch_object_private_constructor(1, 2));
124 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_private_constructor', array('a', 'b'));