Posted by Alvaro G Vicario on 11/15/66 11:23
*** R. Rajesh Jeba Anbiah wrote/escribió (9 Aug 2005 04:31:47 -0700):
> So, in your callback function, check if the current error_reporting()
> level (when the error is triggerred) is 0-- if so, ignore that
> error--so that your @ operator will work.
I need a deeper look on manual. This piece of code inside my error handler
did the trick:
if(error_reporting()==0){
return;
}
Thanks a lot.
--
-- Álvaro G. Vicario - Burgos, Spain
-- http://bits.demogracia.com - Mi sitio sobre programación web
-- Don't e-mail me your questions, post them to the group
--
[Back to original message]
|