作者:苦柚甜甜 | 来源:互联网 | 2024-11-11 10:59
在A文件中,若需通过`$this->display()`方法调用另一个类文件中的函数,可以通过以下步骤实现:首先确保目标类已正确引入或自动加载,然后在A文件中实例化该类,并通过实例对象调用所需方法。此方法适用于PHP环境。
在A文件中使用$this->display()调用另外一个类文件的方法,应该怎么做?
A文件:
PHP code
class indexAction
{
public function index()
{
echo 'abc';
$this->display(); //就是这一行
}
}
B类文件:
PHP code
class view {
public function display() {
echo '模板输出成功';
}
}
要怎么实例化才能在A文件中可以这样$this->display()调用另外B类文件
------解决方案--------------------
$this->display() ? 这种设计很奇怪
恐怕得靠继承吧 class indexAction extends view
或者可以选择魔术方法 __call()
现学现卖:
PHP code
class indexAction
{
//新增一个魔术方法
public function __call($mName, $mArg)
{
$view = new view();
if(method_exists($view, $mName))
call_user_func(array($view, $mName));
}
}