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);
63 $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);
73 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a'));
74 …if (($obj->ID !== "4") || ($obj->label !== "d") || ($obj->a !== 'a') || ($obj->b !== NULL) || (get…
76 var_dump($obj);
82 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a', 'b'));
83 …if (($obj->ID !== "5") || ($obj->label !== "e") || ($obj->a !== 'a') || ($obj->b !== 'b') || (get_…
85 var_dump($obj);
109 if (false !== ($obj = @mysqli_fetch_object($res, 'mysqli_fetch_object_construct', 'a')))
130 var_dump($obj = new mysqli_fetch_object_private_constructor(1, 2));
133 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_private_constructor', array('a', 'b'));