小编典典

如何在 PHP 中实现回调?

all

回调是如何用 PHP 编写的?


阅读 62

收藏
2022-07-27

共1个答案

小编典典

该手册可互换使用术语“回调”和“可调用”,但是,“回调”传统上是指充当函数指针的字符串或数组值,引用函数或类方法以供将来调用。自
PHP 4 以来,这允许了一些函数式编程元素。风格是:

$cb1 = 'someGlobalFunction';
$cb2 = ['ClassName', 'someStaticMethod'];
$cb3 = [$object, 'somePublicMethod'];

// this syntax is callable since PHP 5.2.3 but a string containing it
// cannot be called directly
$cb2 = 'ClassName::someStaticMethod';
$cb2(); // fatal error

// legacy syntax for PHP 4
$cb3 = array(&$object, 'somePublicMethod');

一般来说,这是使用可调用值的安全方法:

if (is_callable($cb2)) {
    // Autoloading will be invoked to load the class "ClassName" if it's not
    // yet defined, and PHP will check that the class has a method
    // "someStaticMethod". Note that is_callable() will NOT verify that the
    // method can safely be executed in static context.

    $returnValue = call_user_func($cb2, $arg1, $arg2);
}

现代 PHP 版本允许将上述前三种格式直接调用为$cb().
call_user_funccall_user_func_array支持以上所有。

请参阅: http:
//php.net/manual/en/language.types.callable.php

注释/注意事项:

  1. 如果函数/类是命名空间的,则字符串必须包含完全限定的名称。例如['Vendor\Package\Foo', 'method']
  2. call_user_func不支持通过引用传递非对象,因此您可以使用call_user_func_array,或者在以后的 PHP 版本中,将回调保存到 var 并使用直接语法:$cb();
  3. 具有__invoke()方法(包括匿名函数)的对象属于“可调用”类别,并且可以以相同的方式使用,但我个人不会将这些与遗留的“回调”术语联系起来。
  4. legacycreate_function()创建一个全局函数并返回它的名字。它是一个包装器,eval()应该使用匿名函数。
2022-07-27