gpt4 book ai didi

php - 在通过 call_user_func_array 调用的方法中使用 $this

转载 作者:可可西里 更新时间:2023-10-31 23:08:48 27 4
gpt4 key购买 nike

我有一个方法,简化后看起来像这样:

class Foo {

public function bar($id) {
// do stuff using $this, error occurs here
}

}

这样调用它效果很好:

$foo = new Foo();
$foo->bar(1);

但是,如果我使用 call_user_func_array() 调用它,像这样:

call_user_func_array(array("Foo", "bar"), array('id' => 1));

哪个应该相等,我得到以下错误:

Fatal error: Using $this when not in object context in

($this 未定义)

这是为什么?有什么我想念的吗?我应该怎么做才能在调用的方法中使用 $this

最佳答案

array("Foo", "bar") 等于 Foo::bar(),即静态方法 - 这是有道理的,因为 $ foo 未被使用,因此 PHP 无法知道要使用哪个实例。

你想要的是 array($foo, "bar") 来调用 instance 方法。

参见 http://php.net/manual/en/language.types.callable.php获取各种可调用对象的列表。


您还需要将参数作为索引数组而不是关联数组传递,即 array(1) 而不是 array('id' => 1)

关于php - 在通过 call_user_func_array 调用的方法中使用 $this,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12885968/

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