Searched refs:ReflectionReference (Results 1 – 7 of 7) sorted by relevance
/PHP-8.0/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); 39 var_dump(unserialize('O:19:"ReflectionReference":0:{}')); 43 Call to private ReflectionReference::__construct() from global scope 44 ReflectionReference::fromArrayElement(): Argument #1 ($array) must be of type array, stdClass given 47 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 | 97 ["ReflectionReference"]=> 100 string(19) "ReflectionReference"
|
/PHP-8.0/ext/reflection/ |
H A D | php_reflection.stub.php | 647 final class ReflectionReference class 649 public static function fromArrayElement(array $array, int|string $key): ?ReflectionReference {}
|
H A D | php_reflection_arginfo.h | 467 …ETURN_OBJ_INFO_EX(arginfo_class_ReflectionReference_fromArrayElement, 0, 2, ReflectionReference, 1) 686 ZEND_METHOD(ReflectionReference, fromArrayElement); 687 ZEND_METHOD(ReflectionReference, getId); 688 ZEND_METHOD(ReflectionReference, __construct); 983 …ZEND_ME(ReflectionReference, fromArrayElement, arginfo_class_ReflectionReference_fromArrayElement,… 984 ZEND_ME(ReflectionReference, getId, arginfo_class_ReflectionReference_getId, ZEND_ACC_PUBLIC) 986 …ZEND_ME(ReflectionReference, __construct, arginfo_class_ReflectionReference___construct, ZEND_ACC_…
|
H A D | php_reflection.c | 6137 ZEND_METHOD(ReflectionReference, __construct) in ZEND_METHOD() argument 6157 ZEND_METHOD(ReflectionReference, fromArrayElement) in ZEND_METHOD() argument 6194 ZEND_METHOD(ReflectionReference, getId) in ZEND_METHOD() argument
|
Completed in 31 milliseconds