Home
last modified time | relevance | path

Searched refs:invokeArgs (Results 1 – 18 of 18) sorted by relevance

/PHP-8.0/ext/reflection/tests/
H A DReflectionMethod_invokeArgs_basic.phpt2 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 DReflectionMethod_setAccessible.phpt26 $private->invokeArgs(new A, array(NULL));
42 $privateStatic->invokeArgs(NULL, array(NULL));
58 $protected->invokeArgs(new A, array(NULL));
74 $protectedStatic->invokeArgs(NULL, array(NULL));
87 $private->invokeArgs(new A, array(NULL));
89 $privateStatic->invokeArgs(NULL, array(NULL));
91 $protected->invokeArgs(new A, array(NULL));
93 $protectedStatic->invokeArgs(NULL, array(NULL));
H A DReflectionMethod_invokeArgs_error2.phpt2 ReflectionMethod::invokeArgs() further errors
20 var_dump($foo->invokeArgs($testClassInstance, true));
27 string(85) "ReflectionMethod::invokeArgs(): Argument #2 ($args) must be of type array, bool given"
H A DReflectionMethod_invokeArgs_error3.phpt2 ReflectionMethod::invokeArgs() further errors
42 var_dump($foo->invokeArgs(new stdClass(), array()));
49 var_dump($staticMethod->invokeArgs(null, array()));
53 var_dump($privateMethod->invokeArgs($testClassInstance, array()));
61 $abstractMethod->invokeArgs($testClassInstance, array());
66 $abstractMethod->invokeArgs(true);
H A Drequest38992.phpt2 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 DReflectionMethod_invokeArgs_error1.phpt2 ReflectionMethod:invokeArgs() errors
22 var_dump($methodWithArgs->invokeArgs($testClassInstance, array()));
31 #1 %sReflectionMethod_invokeArgs_error1.php(19): ReflectionMethod->invokeArgs(Object(TestClass), Ar…
H A Dbug80299.phpt2 Bug #80299: ReflectionFunction->invokeArgs confused in arguments
11 (new ReflectionFunction($function))->invokeArgs($args);
H A Dbug62384.phpt15 var_dump($reflection_method->invokeArgs($closure1, $arguments1));
16 var_dump($reflection_method->invokeArgs($closure2, $arguments2));
H A Dbug60367.phpt23 $method->invokeArgs(null, array());
26 $method->invokeArgs(null, array());
H A D009.phpt36 echo "--invokeArgs--\n";
37 var_dump($func->invokeArgs(array(1,2,3)));
86 --invokeArgs--
H A D025.phpt36 echo "--invokeArgs--\n";
37 var_dump($func->invokeArgs(array(1,2,3)));
86 --invokeArgs--
/PHP-8.0/Zend/tests/
H A Ddynamic_call_to_ref_returning_function.phpt21 var_dump((new \ReflectionFunction('Foo\retRef'))->invokeArgs([42]));
29 var_dump((new \ReflectionMethod('Foo\Bar', 'method'))->invokeArgs(new Bar, [42]));
H A Dbug46106.phpt14 $x->invokeArgs(array(0));
/PHP-8.0/Zend/tests/named_params/
H A Dcall_user_func.phpt62 $rf->invokeArgs(['A', 'c' => 'C']);
65 $rm->invokeArgs(new Test, ['A', 'c' => 'C']);
/PHP-8.0/ext/reflection/
H A Dphp_reflection.stub.php122 public function invokeArgs(array $args) {} function in ReflectionFunction
191 public function invokeArgs(?object $object, array $args) {} function in ReflectionMethod
H A Dphp_reflection_arginfo.h528 ZEND_METHOD(ReflectionFunction, invokeArgs);
550 ZEND_METHOD(ReflectionMethod, invokeArgs);
752 …ZEND_ME(ReflectionFunction, invokeArgs, arginfo_class_ReflectionFunction_invokeArgs, ZEND_ACC_PUBL…
784 ZEND_ME(ReflectionMethod, invokeArgs, arginfo_class_ReflectionMethod_invokeArgs, ZEND_ACC_PUBLIC)
H A Dphp_reflection.c1895 ZEND_METHOD(ReflectionFunction, invokeArgs) in ZEND_METHOD() argument
3286 ZEND_METHOD(ReflectionMethod, invokeArgs) in ZEND_METHOD() argument
/PHP-8.0/
H A DNEWS1478 . Fixed bug #80299 (ReflectionFunction->invokeArgs confused in arguments).

Completed in 54 milliseconds