查看可调用
手册,了解将函数作为回调传递的所有不同方法。我在这里复制了该手册,并根据您的方案添加了每种方法的一些示例。
调用
- PHP 函数通过其名称作为字符串传递。可以使用任何内置或用户定义的函数,但语言构造除外,例如:array(),echo,empty(),eval(),exit(),isset(),list(),print或unset()。
// Not applicable in your scenario
$this->processSomething('some_global_php_function');
- 实例化对象的方法作为数组传递,该数组包含索引 0 处的对象和索引 1 处的方法名称。
// Only from inside the same class
$this->processSomething([$this, 'myCallback']);
$this->processSomething([$this, 'myStaticCallback']);
// From either inside or outside the same class
$myObject->processSomething([new MyClass(), 'myCallback']);
$myObject->processSomething([new MyClass(), 'myStaticCallback']);
-
还可以通过传递类名而不是索引 0 处的对象来传递静态类方法,而无需实例化该类的对象。
// Only from inside the same class
$this->processSomething([__CLASS__, 'myStaticCallback']);
// From either inside or outside the same class
$myObject->processSomething(['\Namespace\MyClass', 'myStaticCallback']);
$myObject->processSomething(['\Namespace\MyClass::myStaticCallback']); // PHP 5.2.3+
$myObject->processSomething([MyClass::class, 'myStaticCallback']); // PHP 5.5.0+
- 除了常见的用户定义函数外,匿名函数还可以传递给回调参数。
// Not applicable in your scenario unless you modify the structure
$this->processSomething(function() {
// process something directly here...
});