Home
last modified time | relevance | path

Searched refs:call_user_func_array (Results 1 – 25 of 46) sorted by relevance

12

/PHP-7.4/Zend/tests/
H A Dcall_user_func_array_prefer_ref.phpt2 call_user_func_array() passes value to prefer-ref arg if element wasn't a reference
7 call_user_func_array('array_multisort', [[3, 2, 1]]);
10 call_user_func_array('array_multisort', $args);
21 call_user_func_array('array_multisort', [[3, 2, 1]]);
24 call_user_func_array('array_multisort', $args);
H A Dbug48770_2.phpt2 Bug #48770 (call_user_func_array() fails to call parent from inheriting class)
25 call_user_func_array(array($this, 'parent::func2'), array($str));
26 call_user_func_array(array($this, 'parent::func3'), array($str));
27 call_user_func_array(array($this, 'parent::func22'), array($str));
28 call_user_func_array(array($this, 'parent::inexistent'), array($str));
52 Warning: call_user_func_array() expects parameter 1 to be a valid callback, cannot access private m…
54 Warning: call_user_func_array() expects parameter 1 to be a valid callback, class 'A' does not have…
H A Dbug52940.phpt2 Bug #52940 (call_user_func_array still allows call-time pass-by-reference)
14 call_user_func_array("foo", array(&$a));
16 call_user_func_array("bar", array(&$a));
H A Dbug48770_3.phpt2 Bug #48770 (call_user_func_array() fails to call parent from inheriting class)
25 call_user_func_array(array($this, 'self::func2'), array($str));
26 call_user_func_array(array($this, 'self::func3'), array($str));
27 call_user_func_array(array($this, 'self::inexistent'), array($str));
51 Warning: call_user_func_array() expects parameter 1 to be a valid callback, class 'B' does not have…
H A Dbug50394.phpt10 call_user_func_array( 'inc', $args );
17 call_user_func_array( array( $proxy, 'bar' ), $args );
18 call_user_func_array( array( $proxy, 'bar' ), array(&$arg) );
H A Dlsb_022.phpt19 call_user_func_array("parent::__callstatic", array($name, $args));
21 call_user_func_array("parent::foo", $args);
22 call_user_func_array(array("parent","foo"), $args);
H A Dbug32290.phpt2 Bug #32290 (calling call_user_func_array() ends in infinite loop within child class)
48 return call_user_func_array(array("TestA", "doSomething"), array($i));
56 return call_user_func_array(array($this, "TestA::doSomethingThis"), array($i));
64 return call_user_func_array(array("parent", "doSomethingParent"), array($i));
72 return call_user_func_array(array($this, "parent::doSomethingParentThis"), array($i));
80 return call_user_func_array(array("TestA", "doSomethingStatic"), array($i));
H A Dbug79979.phpt5 call_user_func_array("str_replace", ["a", "b", "c", 0]);
7 $cufa = "call_user_func_array";
10 call_user_func_array($cufa, ["str_replace", ["a", "b", "c", 0]]);
H A Dbug47880.phpt2 Bug #47880 (crashes in call_user_func_array())
11 call_user_func_array(array('bomb', 'go'), array(0));
H A Dbug61273.phpt2 Bug #61273 (call_user_func_array with more than 16333 arguments leaks / crashes)
11 call_user_func_array(function(&$a) {}, $args);
H A Dbug19859.phpt2 Bug #19859 (__call() does not catch call_user_func_array() calls)
14 call_user_func_array(array($x,'fake'),array(1));
H A Dunexpected_ref_bug.phpt13 $data = call_user_func_array("explode",array(new Test(), &$my_var));
15 $data = call_user_func_array("implode",array(&$my_var, new Test()));
H A Dbug52939.phpt11 var_dump(call_user_func_array("array_multisort", $args));
16 var_dump(call_user_func_array("array_multisort", $args));
H A Dbug48770.phpt2 Bug #48770 (call_user_func_array() fails to call parent from inheriting class)
32 call_user_func_array(array($this, 'parent::func'), array($str));
H A Dcall_with_refs.phpt14 $data = call_user_func_array("substr_replace",array(&$my_var, new Test(), 1));
H A Dcall_user_func_008.phpt16 var_dump(call_user_func_array('test', [$i, $j]));
23 var_dump(call_user_func_array('test', [$i, $j]));
/PHP-7.4/ext/standard/tests/general_functions/
H A Dbug40398.phpt19 call_user_func_array(array($this, 'Base::__construct'), $args);
28 call_user_func_array(array($this, 'parent::__construct'), $args);
37 call_user_func_array('Base::__construct', $args);
46 call_user_func_array('parent::__construct', $args);
55 call_user_func_array(array('Base', '__construct'), $args);
64 call_user_func_array(array('parent', '__construct'), $args);
H A Dcall_user_func_array_variation_001.phpt2 call_user_func_array() passes by reference if the array element is referenced, regardless of functi…
16 call_user_func_array('by_val', $arg);
21 call_user_func_array('by_ref', $arg);
27 call_user_func_array('by_val', $arg);
33 call_user_func_array('by_ref', $arg);
H A Dbug31190.phpt2 Bug #31190 (exception in call_user_func_array())
18 call_user_func_array($array, array(1, 2));
H A Dbug41970.phpt8 var_dump(call_user_func_array("sort", array($a)));
9 var_dump(call_user_func_array("strlen", array($a)));
/PHP-7.4/tests/classes/
H A Dbug27504.phpt2 Bug #27504 (call_user_func_array allows calling of private/protected methods)
16 call_user_func_array( array( $foo , 'bar' ) , array( '2' ) );
23 Warning: call_user_func_array() expects parameter 1 to be a valid callback, cannot access private m…
/PHP-7.4/Zend/tests/generators/
H A Dgenerator_with_arg_unpacking.phpt6 call_user_func_array(function() { yield; }, range(1, 16384));
8 $g = call_user_func_array(function() { yield; }, range(1, 16384));
/PHP-7.4/ext/session/tests/
H A Dsave_handler_closures.inc6 ${$fn.'_closure'} = function () use ($fn) { return call_user_func_array ($fn, func_get_args ()); };
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_bind_param_call_user_func.phpt2 mysqli_stmt_bind_param used with call_user_func_array() (see also bug #43568)
48 if (!call_user_func_array('mysqli_stmt_bind_param', $params))
76 if (!call_user_func_array(array($stmt, 'bind_param'), $params))
104 if (!call_user_func_array(array($stmt, 'bind_param'), $params))
131 if (!call_user_func_array(array($stmt, 'bind_param'), $params))
160 if (!call_user_func_array('mysqli_stmt_bind_param', $params))
189 if (!call_user_func_array('mysqli_stmt_bind_param', $params))
218 if (!call_user_func_array('mysqli_stmt_bind_param', $params))
246 if (!call_user_func_array('mysqli_stmt_bind_param', $params))
299 if (!call_user_func_array(array($stmt, 'bind_param'), $params))
[all …]
/PHP-7.4/ext/opcache/tests/
H A Dbug76477.phpt19 function strlenb() { return call_user_func_array("strlen", func_get_args()); }

Completed in 21 milliseconds

12