Searched refs:mysqli_fetch_object (Results 1 – 12 of 12) sorted by relevance
/PHP-8.1/ext/mysqli/tests/ |
H A D | mysqli_fetch_object.phpt | 2 mysqli_fetch_object() 20 $obj = mysqli_fetch_object($res); 36 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_test'); 54 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array()); 64 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a')); 73 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a', 'b')); 79 var_dump(mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a', 'b', 'c'))); 80 var_dump(mysqli_fetch_object($res)); 90 mysqli_fetch_object($res); 104 if (false !== ($obj = @mysqli_fetch_object($res, 'mysqli_fetch_object_construct', 'a'))) [all …]
|
H A D | bug73949.phpt | 2 Bug #73949 (leak in mysqli_fetch_object) 20 while($db= mysqli_fetch_object($res,'cc',$t)){}
|
H A D | mysqli_fetch_object_no_object.phpt | 2 mysqli_fetch_object() 16 $obj = mysqli_fetch_object($res);
|
H A D | mysqli_fetch_object_no_constructor.phpt | 2 mysqli_fetch_object() - calling constructor on class wo constructor 36 var_dump($obj = mysqli_fetch_object($res, 'mysqli_fetch_object_test', array(1, 2))); 61 Exception: mysqli_fetch_object(): Argument #3 ($constructor_args) must be empty when the specified …
|
H A D | mysqli_fetch_object_oo.phpt | 2 mysqli_fetch_object() 45 $obj = mysqli_fetch_object($res); 80 mysqli_fetch_object($res); 100 var_dump(mysqli_fetch_object($res)); 111 mysqli_fetch_object($res);
|
H A D | 060.phpt | 2 mysqli_fetch_object with classes 37 $test = mysqli_fetch_object($result, 'test_class', array(1, 2));
|
H A D | 042.phpt | 2 mysqli_fetch_object 43 $test = mysqli_fetch_object($result);
|
H A D | gh8068.phpt | 2 GH-8068 (mysqli_fetch_object creates inaccessible properties)
|
/PHP-8.1/ext/mysqli/ |
H A D | mysqli_arginfo.h | 751 ZEND_FUNCTION(mysqli_fetch_object); 877 ZEND_FE(mysqli_fetch_object, arginfo_mysqli_fetch_object) 1043 …ZEND_ME_MAPPING(fetch_object, mysqli_fetch_object, arginfo_class_mysqli_result_fetch_object, ZEND_…
|
H A D | mysqli.stub.php | 839 function mysqli_fetch_object(mysqli_result $result, string $class = "stdClass", array $constructor_… function
|
H A D | mysqli_nonapi.c | 622 PHP_FUNCTION(mysqli_fetch_object) argument
|
/PHP-8.1/ |
H A D | NEWS | 1403 . Fixed bug GH-8068 (mysqli_fetch_object creates inaccessible properties).
|
Completed in 25 milliseconds