/php-src/ext/reflection/tests/ |
H A D | ReflectionMethod_setAccessible.phpt | 18 $private->invokeArgs(new A, array(NULL)); 20 $privateStatic->invokeArgs(NULL, array(NULL)); 22 $protected->invokeArgs(new A, array(NULL)); 24 $protectedStatic->invokeArgs(NULL, array(NULL)); 32 $private->invokeArgs(new A, array(NULL)); 34 $privateStatic->invokeArgs(NULL, array(NULL)); 36 $protected->invokeArgs(new A, array(NULL)); 38 $protectedStatic->invokeArgs(NULL, array(NULL));
|
H A D | ReflectionMethod_invokeArgs_basic.phpt | 2 ReflectionMethod::invokeArgs() 35 var_dump($foo->invokeArgs($testClassInstance, array())); 36 var_dump($foo->invokeArgs($testClassInstance, array(true))); 40 var_dump($methodWithArgs->invokeArgs($testClassInstance, array(1, "arg2"))); 41 var_dump($methodWithArgs->invokeArgs($testClassInstance, array(1, "arg2", 3))); 45 $methodThatThrows->invokeArgs($testClassInstance, array());
|
H A D | ReflectionMethod_invokeArgs_error3.phpt | 2 ReflectionMethod::invokeArgs() further errors 42 var_dump($foo->invokeArgs(new stdClass(), array())); 49 var_dump($staticMethod->invokeArgs(null, array())); 52 var_dump($privateMethod->invokeArgs($testClassInstance, array())); 57 $abstractMethod->invokeArgs($testClassInstance, array()); 62 $abstractMethod->invokeArgs(true);
|
H A D | ReflectionMethod_invokeArgs_error2.phpt | 2 ReflectionMethod::invokeArgs() further errors 20 var_dump($foo->invokeArgs($testClassInstance, true)); 27 string(85) "ReflectionMethod::invokeArgs(): Argument #2 ($args) must be of type array, true given"
|
H A D | request38992.phpt | 2 Request #38992 (invoke() and invokeArgs() static method calls should match) 20 $r->invokeArgs('WTF?', array()); 27 ReflectionMethod::invokeArgs(): Argument #1 ($object) must be of type ?object, string given
|
H A D | ReflectionMethod_invokeArgs_error1.phpt | 2 ReflectionMethod:invokeArgs() errors 22 var_dump($methodWithArgs->invokeArgs($testClassInstance, array())); 31 #1 %sReflectionMethod_invokeArgs_error1.php(19): ReflectionMethod->invokeArgs(Object(TestClass), Ar…
|
H A D | bug80299.phpt | 2 Bug #80299: ReflectionFunction->invokeArgs confused in arguments 11 (new ReflectionFunction($function))->invokeArgs($args);
|
H A D | bug62384.phpt | 15 var_dump($reflection_method->invokeArgs($closure1, $arguments1)); 16 var_dump($reflection_method->invokeArgs($closure2, $arguments2));
|
H A D | bug60367.phpt | 23 $method->invokeArgs(null, array()); 26 $method->invokeArgs(null, array());
|
H A D | 009.phpt | 36 echo "--invokeArgs--\n"; 37 var_dump($func->invokeArgs(array(1,2,3))); 86 --invokeArgs--
|
H A D | 025.phpt | 36 echo "--invokeArgs--\n"; 37 var_dump($func->invokeArgs(array(1,2,3))); 86 --invokeArgs--
|
/php-src/Zend/tests/dynamic_call/ |
H A D | dynamic_call_to_ref_returning_function.phpt | 21 var_dump((new \ReflectionFunction('Foo\retRef'))->invokeArgs([42])); 29 var_dump((new \ReflectionMethod('Foo\Bar', 'method'))->invokeArgs(new Bar, [42]));
|
/php-src/Zend/tests/ |
H A D | bug46106.phpt | 14 $x->invokeArgs(array(0));
|
/php-src/Zend/tests/named_params/ |
H A D | call_user_func.phpt | 62 $rf->invokeArgs(['A', 'c' => 'C']); 65 $rm->invokeArgs(new Test, ['A', 'c' => 'C']);
|
/php-src/ext/reflection/ |
H A D | php_reflection.stub.php | 138 public function invokeArgs(array $args): mixed {} function in ReflectionFunction 218 public function invokeArgs(?object $object, array $args): mixed {} function in ReflectionMethod
|
H A D | php_reflection_arginfo.h | 760 ZEND_METHOD(ReflectionFunction, invokeArgs); 783 ZEND_METHOD(ReflectionMethod, invokeArgs); 1038 …ZEND_ME(ReflectionFunction, invokeArgs, arginfo_class_ReflectionFunction_invokeArgs, ZEND_ACC_PUBL… 1069 ZEND_ME(ReflectionMethod, invokeArgs, arginfo_class_ReflectionMethod_invokeArgs, ZEND_ACC_PUBLIC)
|
H A D | php_reflection.c | 2050 ZEND_METHOD(ReflectionFunction, invokeArgs) in ZEND_METHOD() argument 3412 ZEND_METHOD(ReflectionMethod, invokeArgs) in ZEND_METHOD() argument
|