gpt4 book ai didi

php - 如何使用 add_action Hook 其他类的静态方法

转载 作者:可可西里 更新时间:2023-11-01 00:56:19 26 4
gpt4 key购买 nike

我尝试使用hook调用静态方法,但是失败了。

我像这样在 test.php 中添加 Action

 require_once('class.test.php');
add_action('register_new_user', array('Test','auto_signin'),20);

我的 auto_signin 函数放在 class.test.php 文件中:

 namespace MyTest;
echo(12);
class Test {
function __construct()
{

}

public static function auto_signin()
{
echo('hello');
die();
}
}

当我调试它时, Hook register_new_user 确实执行了,并且从全局变量 wp_filters 中,auto_signin 函数已添加到 register_new_user,但该函数从未执行。

最佳答案

您的类 Test 已命名空间,但您在调用 add_action 时未使用任何命名空间。

更新:

add_action('register_new_user', array('Test','auto_signin'),20);

对此:

add_action( 'register_new_user', array( 'MyTest\Test', 'auto_signin' ), 20 );

关于php - 如何使用 add_action Hook 其他类的静态方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41949961/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com