Home
last modified time | relevance | path

Searched refs:callback (Results 1 – 25 of 311) sorted by path

12345678910>>...13

/PHP-7.4/
H A DNEWS556 . Fixed bug #79177 (FFI doesn't handle well PHP exceptions within callback).
H A DUPGRADING313 format of the matches array passed to the callback function.
/PHP-7.4/Zend/tests/
H A Daccess_modifiers_012.phpt2 Trigger __call() in lieu of non visible methods when called via a callback.
H A Dbug31720.phpt13 Warning: array_walk() expects parameter 2 to be a valid callback, first array member is not a valid…
H A Dbug37138.phpt2 Bug #37138 (__autoload tries to load callback'ed self and parent)
H A Dbug45180.phpt2 Testing callback formats within class method
H A Dbug45186.phpt54 Warning: call_user_func() expects parameter 1 to be a valid callback, cannot access self:: when no …
H A Dbug45186_2.phpt48 Warning: call_user_func() expects parameter 1 to be a valid callback, class 'bar' does not have a m…
50 Warning: call_user_func() expects parameter 1 to be a valid callback, cannot access self:: when no …
H A Dbug45744.phpt2 Bug #45744 (Case sensitive callback behaviour)
7 var_dump(array_map(array($this, 'callback'), $data));
10 private function callback($value) {
14 return array_map(array($this, 'callback'), $value);
H A Dbug48770_2.phpt52 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 Dbug48770_3.phpt51 Warning: call_user_func_array() expects parameter 1 to be a valid callback, class 'B' does not have…
H A Dbug63173.phpt2 Bug #63173: Crash when invoking invalid array callback
7 $callback = [1 => 0, 2 => 0];
8 $callback();
12 Fatal error: Uncaught Error: Array callback has to contain indices 0 and 1 in %s:%d
H A Dbug63468.phpt2 Bug #63468 (wrong called method as callback with inheritance)
H A Dbug68475.phpt19 $callback = 'TestClass::staticMethod';
20 $callback();
23 $callback = 'testclass::staticmethod';
24 $callback();
27 $callback = 'TestClass::staticMethodWithArgs';
30 $callback($args[0], $args[1], $args[2]);
33 $callback(...$args);
36 $callback = 'TestClass::undefinedMethod';
38 $callback();
44 $callback = 'UndefinedClass::testMethod';
[all …]
H A Dbug70895.phpt11 Warning: array_map\(\) expects parameter 1 to be a valid callback, function '%n' not found or inval…
13 Warning: array_map\(\) expects parameter 1 to be a valid callback, function '%n %i' not found or in…
15 Warning: array_map\(\) expects parameter 1 to be a valid callback, function '%n %i aoeu %f aoeu %p'…
H A Dbug70898.phpt12 Warning: array_map() expects parameter 1 to be a valid callback, function '000000000000000000000000…
14 Warning: array_map() expects parameter 1 to be a valid callback, function '' not found or invalid f…
16 Warning: array_map() expects parameter 1 to be a valid callback, function '' not found or invalid f…
18 Warning: array_map() expects parameter 1 to be a valid callback, function '' not found or invalid f…
20 Warning: array_map() expects parameter 1 to be a valid callback, function '' not found or invalid f…
H A Dbug72101.phpt6 protected $callback;
7 public function __construct($callback) {
8 $this->callback = $callback;
11 return call_user_func_array($this->callback, $invocation->parameters);
38 public function callback(&$a, &$b, $c) {
73 $OuterMatcher->stub = new PHPUnit_Framework_MockObject_Stub_ReturnCallback([$foo, 'callback']);
H A Dbug73338.phpt18 Warning: call_user_func() expects parameter 1 to be a valid callback, no array or string given in %…
H A Dbug78502.phpt17 function tree_map($tree, $recursive_attr, closure $callback){
19 $tree[$recursive_attr] = array_map(function($c) use($recursive_attr, $callback){
20 return tree_map($c, $recursive_attr, $callback);
23 return $callback($tree);
H A Dbug79657.phpt22 foreach ($callbacks as $callback) {
23 yield from $callback();
H A Dcall_user_func_001.phpt33 Warning: call_user_func() expects parameter 1 to be a valid callback, cannot access private method …
35 Warning: call_user_func() expects parameter 1 to be a valid callback, cannot access protected metho…
H A Dcall_user_func_002.phpt19 Warning: call_user_func() expects parameter 1 to be a valid callback, class 'foo' not found in %s o…
21 Warning: call_user_func() expects parameter 1 to be a valid callback, class '' not found in %s on l…
25 Warning: call_user_func() expects parameter 1 to be a valid callback, first array member is not a v…
29 Warning: call_user_func() expects parameter 1 to be a valid callback, first array member is not a v…
H A Dclass_alias_011.phpt2 Testing callback in alias
H A Dexception_handler_004.phpt14 Warning: set_exception_handler() expects the argument (fo) to be a valid callback in %s on line %d
16 Warning: set_exception_handler() expects the argument (::) to be a valid callback in %s on line %d
H A Dindirect_call_array_005.phpt18 $callback = ['TestClass', 'method'];
19 echo $callback();

Completed in 34 milliseconds

12345678910>>...13