Searched refs:ReflectionReference (Results 1 – 8 of 8) sorted by relevance
/PHP-8.3/ext/reflection/tests/ |
H A D | ReflectionReference_errors.phpt | 2 Various error conditions for ReflectionReference 7 new ReflectionReference(); 13 ReflectionReference::fromArrayElement(new stdClass, "test"); 19 ReflectionReference::fromArrayElement([], []); 26 ReflectionReference::fromArrayElement($ary, 3); 33 $ref = ReflectionReference::fromArrayElement($ary, 0); 40 var_dump(unserialize('O:19:"ReflectionReference":0:{}')); 46 Call to private ReflectionReference::__construct() from global scope 47 ReflectionReference::fromArrayElement(): Argument #1 ($array) must be of type array, stdClass given 50 Serialization of 'ReflectionReference' is not allowed [all …]
|
H A D | ReflectionReference.phpt | 2 Basic ReflectionReference functionality 13 $r0 = ReflectionReference::fromArrayElement($ary, 0); 15 $r1 = ReflectionReference::fromArrayElement($ary, 1); 17 $r2 = ReflectionReference::fromArrayElement($ary, 2); 18 var_dump($r2 instanceof ReflectionReference); 19 $r3 = ReflectionReference::fromArrayElement($ary, 3); 20 var_dump($r2 instanceof ReflectionReference); 29 $r2_2 = ReflectionReference::fromArrayElement($ary2, 0); 30 $r3_2 = ReflectionReference::fromArrayElement($ary2, 1); 38 $r2 = ReflectionReference::fromArrayElement($ary, 2); [all …]
|
H A D | ReflectionReference_bug78263.phpt | 12 var_dump(ReflectionReference::fromArrayElement($b[0], 0)); 16 object(ReflectionReference)#1 (0) {
|
H A D | ReflectionExtension_getClasses_basic.phpt | 102 ["ReflectionReference"]=> 105 string(19) "ReflectionReference"
|
/PHP-8.3/Zend/tests/ |
H A D | bugGH-8655.phpt | 24 var_dump(ReflectionReference::fromArrayElement($arrayCast, 'foo'));
|
/PHP-8.3/ext/reflection/ |
H A D | php_reflection.stub.php | 807 final class ReflectionReference class 809 public static function fromArrayElement(array $array, int|string $key): ?ReflectionReference {}
|
H A D | php_reflection_arginfo.h | 536 …ETURN_OBJ_INFO_EX(arginfo_class_ReflectionReference_fromArrayElement, 0, 2, ReflectionReference, 1) 822 ZEND_METHOD(ReflectionReference, fromArrayElement); 823 ZEND_METHOD(ReflectionReference, getId); 824 ZEND_METHOD(ReflectionReference, __construct); 1155 …ZEND_ME(ReflectionReference, fromArrayElement, arginfo_class_ReflectionReference_fromArrayElement,… 1156 ZEND_ME(ReflectionReference, getId, arginfo_class_ReflectionReference_getId, ZEND_ACC_PUBLIC) 1158 …ZEND_ME(ReflectionReference, __construct, arginfo_class_ReflectionReference___construct, ZEND_ACC_…
|
H A D | php_reflection.c | 6460 ZEND_METHOD(ReflectionReference, __construct) in ZEND_METHOD() argument 6480 ZEND_METHOD(ReflectionReference, fromArrayElement) in ZEND_METHOD() argument 6517 ZEND_METHOD(ReflectionReference, getId) in ZEND_METHOD() argument
|
Completed in 59 milliseconds