php类调用外部类

时间:2009-07-22 01:52:07

标签: php class function include methods

我有一个php页面,它在一个名为construct的类中调用并运行一个名为pagestart()的方法。后来在同一页面中,我在另一个类中调用了一个不同的方法。如果由于任何原因我想让它有不同的方法错误,它会在构造类中调用error()函数。

我的问题是有没有办法调用error()方法而不做:

include_once("class/construct.class.php");
$construct = new construct;
$construct->error($msg);

然后告诉函数查看主php文件所包含的类?

感谢。

1 个答案:

答案 0 :(得分:4)

您可以在该功能的开头调用set_error_handler,并在结尾处调用restore_error_handler