Searched refs:fromArrayElement (Results 1 – 7 of 7) sorted by relevance
/PHP-8.3/ext/reflection/tests/ |
H A D | ReflectionReference.phpt | 12 echo "fromArrayElement():\n"; 13 $r0 = ReflectionReference::fromArrayElement($ary, 0); 15 $r1 = ReflectionReference::fromArrayElement($ary, 1); 17 $r2 = ReflectionReference::fromArrayElement($ary, 2); 19 $r3 = ReflectionReference::fromArrayElement($ary, 3); 29 $r2_2 = ReflectionReference::fromArrayElement($ary2, 0); 30 $r3_2 = ReflectionReference::fromArrayElement($ary2, 1); 38 $r2 = ReflectionReference::fromArrayElement($ary, 2); 39 $r3 = ReflectionReference::fromArrayElement($ary, 3); 45 fromArrayElement():
|
H A D | ReflectionReference_errors.phpt | 13 ReflectionReference::fromArrayElement(new stdClass, "test"); 19 ReflectionReference::fromArrayElement([], []); 26 ReflectionReference::fromArrayElement($ary, 3); 33 $ref = ReflectionReference::fromArrayElement($ary, 0); 47 ReflectionReference::fromArrayElement(): Argument #1 ($array) must be of type array, stdClass given 48 ReflectionReference::fromArrayElement(): Argument #2 ($key) must be of type string|int, array given
|
H A D | ReflectionReference_bug78263.phpt | 12 var_dump(ReflectionReference::fromArrayElement($b[0], 0));
|
/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 | 809 public static function fromArrayElement(array $array, int|string $key): ?ReflectionReference {} function in ReflectionReference
|
H A D | php_reflection_arginfo.h | 822 ZEND_METHOD(ReflectionReference, fromArrayElement); 1155 …ZEND_ME(ReflectionReference, fromArrayElement, arginfo_class_ReflectionReference_fromArrayElement,…
|
H A D | php_reflection.c | 6480 ZEND_METHOD(ReflectionReference, fromArrayElement) in ZEND_METHOD() argument
|
Completed in 56 milliseconds