如何使用类方法作为回调

2022-08-30 07:08:17

我有一个类,其中包含要用作回调的方法。
如何将它们作为参数传递?

Class MyClass {
    
    public function myMethod() {
        // How should these be called?
        $this->processSomething(this->myCallback);
        $this->processSomething(self::myStaticCallback);
    }

    private function processSomething(callable $callback) {
        // Process something...
        $callback();
    }

    private function myCallback() {
        // Do something...
    }

    private static function myStaticCallback() {
        // Do something...
    }   
    
}

答案 1

查看可调用手册,了解将函数作为回调传递的所有不同方法。我在这里复制了该手册,并根据您的方案添加了每种方法的一些示例。

调用


  • PHP 函数通过其名称作为字符串传递。可以使用任何内置或用户定义的函数,但语言构造除外,例如:array()echoempty()eval()exit()isset()list()printunset()
  // 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...
  });


答案 2

由于5.3有一种更优雅的方式可以写它,我仍然在努力找出它是否可以减少更多

$this->processSomething(function() {
    $this->myCallback();
});

推荐