gpt4 book ai didi

PHP 在同一个类中使用 call_user_func 调用实例方法

转载 作者:IT王子 更新时间:2023-10-28 23:56:53 27 4
gpt4 key购买 nike

我正在尝试使用 call_user_func 从同一对象的另一个方法调用方法,例如

class MyClass
{
public function __construct()
{
$this->foo('bar');
}
public function foo($method)
{
return call_user_func(array($this, $method), 'Hello World');
}

public function bar($message)
{
echo $message;
}
}

new MyClass; 应该返回 'Hello World'...

有谁知道实现此目标的正确方法吗?

非常感谢!

最佳答案

您发布的代码应该可以正常工作。另一种方法是使用 "variable functions"像这样:

public function foo($method)
{
//safety first - you might not need this if the $method
//parameter is tightly controlled....
if (method_exists($this, $method))
{
return $this->$method('Hello World');
}
else
{
//oh dear - handle this situation in whatever way
//is appropriate
return null;
}
}

关于PHP 在同一个类中使用 call_user_func 调用实例方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4288105/

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