Home
last modified time | relevance | path

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

/PHP-8.3/ext/reflection/tests/
H A DReflectionMethod_setAccessible.phpt18 $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 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_invokeArgs_error3.phpt2 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 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, true given"
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.3/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.3/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.3/ext/reflection/
H A Dphp_reflection.stub.php141 public function invokeArgs(array $args): mixed {} function in ReflectionFunction
243 public function invokeArgs(?object $object, array $args): mixed {} function in ReflectionMethod
H A Dphp_reflection_arginfo.h655 ZEND_METHOD(ReflectionFunction, invokeArgs);
677 ZEND_METHOD(ReflectionMethod, invokeArgs);
910 …ZEND_ME(ReflectionFunction, invokeArgs, arginfo_class_ReflectionFunction_invokeArgs, ZEND_ACC_PUBL…
942 ZEND_ME(ReflectionMethod, invokeArgs, arginfo_class_ReflectionMethod_invokeArgs, ZEND_ACC_PUBLIC)
H A Dphp_reflection.c2016 ZEND_METHOD(ReflectionFunction, invokeArgs) in ZEND_METHOD() argument
3437 ZEND_METHOD(ReflectionMethod, invokeArgs) in ZEND_METHOD() argument

Completed in 50 milliseconds