Searched refs:mysqli_fetch_object (Results 1 – 12 of 12) sorted by relevance
/PHP-8.0/ext/mysqli/tests/ |
H A D | mysqli_fetch_object.phpt | 2 mysqli_fetch_object() 19 $obj = mysqli_fetch_object($res); 35 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_test'); 53 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array()); 63 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a')); 72 $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a', 'b')); 78 var_dump(mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a', 'b', 'c'))); 79 var_dump(mysqli_fetch_object($res)); 89 mysqli_fetch_object($res); 103 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) 19 while($db= mysqli_fetch_object($res,'cc',$t)){}
|
H A D | mysqli_fetch_object_no_object.phpt | 2 mysqli_fetch_object() 15 $obj = mysqli_fetch_object($res);
|
H A D | mysqli_fetch_object_no_constructor.phpt | 2 mysqli_fetch_object() - calling constructor on class wo constructor 35 var_dump($obj = mysqli_fetch_object($res, 'mysqli_fetch_object_test', array(1, 2))); 60 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() 44 $obj = mysqli_fetch_object($res); 79 mysqli_fetch_object($res); 99 var_dump(mysqli_fetch_object($res)); 110 mysqli_fetch_object($res);
|
H A D | 060.phpt | 2 mysqli_fetch_object with classes 36 $test = mysqli_fetch_object($result, 'test_class', array(1, 2));
|
H A D | 042.phpt | 2 mysqli_fetch_object 42 $test = mysqli_fetch_object($result);
|
H A D | gh8068.phpt | 2 GH-8068 (mysqli_fetch_object creates inaccessible properties)
|
/PHP-8.0/ext/mysqli/ |
H A D | mysqli_arginfo.h | 715 ZEND_FUNCTION(mysqli_fetch_object); 843 ZEND_FE(mysqli_fetch_object, arginfo_mysqli_fetch_object) 1012 …ZEND_ME_MAPPING(fetch_object, mysqli_fetch_object, arginfo_class_mysqli_result_fetch_object, ZEND_…
|
H A D | mysqli.stub.php | 584 function mysqli_fetch_object(mysqli_result $result, string $class = "stdClass", array $constructor_… function
|
H A D | mysqli_nonapi.c | 574 PHP_FUNCTION(mysqli_fetch_object) argument
|
/PHP-8.0/ |
H A D | NEWS | 374 . Fixed bug GH-8068 (mysqli_fetch_object creates inaccessible properties).
|
Completed in 21 milliseconds