Home
last modified time | relevance | path

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

/PHP-7.4/ext/reflection/tests/
H A DReflectionMethod_invokeArgs_error3.phpt2 ReflectionMethod::invokeArgs() further errors
41 var_dump($foo->invokeArgs());
42 var_dump($foo->invokeArgs(true));
46 var_dump($foo->invokeArgs(new stdClass(), array()));
52 var_dump($foo->invokeArgs(true, array()));
56 var_dump($staticMethod->invokeArgs());
57 var_dump($staticMethod->invokeArgs(true));
58 var_dump($staticMethod->invokeArgs(true, array()));
59 var_dump($staticMethod->invokeArgs(null, array()));
71 $abstractMethod->invokeArgs($testClassInstance, array());
[all …]
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(89) "Argument 2 passed to ReflectionMethod::invokeArgs() must be of the type array, bool giv…
H A Drequest38992.phpt2 Request #38992 (invoke() and invokeArgs() static method calls should match)
15 $r->invokeArgs('WTF?', array());
21 Warning: ReflectionMethod::invokeArgs() expects parameter 1 to be object, string given in %s%ereque…
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 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--
H A Dbug46205.phpt9 $x->invokeArgs(new reflectionparameter('trim', 'str'), array($y, 1));
/PHP-7.4/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-7.4/ext/reflection/
H A Dphp_reflection.c1864 ZEND_METHOD(reflection_function, invokeArgs) in ZEND_METHOD() argument
3202 ZEND_METHOD(reflection_method, invokeArgs) in ZEND_METHOD() argument
6392 ZEND_ME(reflection_function, invokeArgs, arginfo_reflection_function_invokeArgs, 0)
6460 ZEND_ME(reflection_method, invokeArgs, arginfo_reflection_method_invokeArgs, 0)

Completed in 34 milliseconds