vote up 1 vote down star
1

I have a php page that calls and runs a method called pagestart() in a class called construct. Later in that same page I call a different method in a different class. If that different method errors for any reason I would like to have it call the error() function in the construct class.

My question is is there a way to call the error() method without doing:

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

And just tell the function to look in the class included by the main php file?

Thanks.

flag

1 Answer

vote up 3 vote down check

You could call set_error_handler at the start of that function and restore_error_handler at the end of it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.