Re: [PHP] Intercepting errors

2008-03-13 Thread Chris
Stephane Ulysse wrote: PLEASE STOP EMAILING ME THEN CLICK THE UNSUBSCRIBE LINK AT THE BOTTOM OF THE EMAIL. IT'S VERY EASY TO DO. -- Postgresql & php tutorials http://www.designmagick.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Intercepting errors (skip)

2008-03-13 Thread It Maq
sorry i just forgot to print the results. It 's my mistake - Original Message From: It Maq <[EMAIL PROTECTED]> To: php-general@lists.php.net Sent: Thursday, March 13, 2008 11:22:36 AM Subject: Re: [PHP] Intercepting errors I already read th page of the manual, but i

Re: [PHP] Intercepting errors

2008-03-13 Thread It Maq
OR|E_USER_WARNING|E_USER_NOTICE); set_error_handler('error_handler'); ini_set('error_reporting', 0); trigger_error("The string for testing the error", E_USER_ERROR); ?> - Original Message From: Richard Heyes <[EMAIL PROTECTED]> To: It Maq <[EMAIL PR

Re: [PHP] Intercepting errors

2008-03-13 Thread Richard Heyes
I'am already using that. When i call trigger_error the function set in set_error_handler handles the error. but now i don't know if this will handle all the other errors that i don't know about in case they happen. Is there anyway to test that? Read the manual page. I believe it handles all exce

RE: [PHP] Intercepting errors

2008-03-13 Thread Stephane Ulysse
PLEASE STOP EMAILING ME -Original Message- From: It Maq [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2008 10:46 AM To: php-general@lists.php.net Subject: Re: [PHP] Intercepting errors I'am already using that. When i call trigger_error the function set in set_error_handler ha

Re: [PHP] Intercepting errors

2008-03-13 Thread It Maq
: Richard Heyes <[EMAIL PROTECTED]> To: It Maq <[EMAIL PROTECTED]> Cc: php-general@lists.php.net Sent: Thursday, March 13, 2008 10:36:20 AM Subject: Re: [PHP] Intercepting errors > Now i know how to create errors with trigger_error, but i am > wondering how can I make my error handl

Re: [PHP] Intercepting errors

2008-03-13 Thread Richard Heyes
Now i know how to create errors with trigger_error, but i am wondering how can I make my error handling class intercept any kind of error although i'm not aware about it and i don't know if it will happen. Is this possible? You could use set_error_handler(): http://uk.php.net/manual/en/function

[PHP] Intercepting errors

2008-03-13 Thread It Maq
Hi, Now i know how to create errors with trigger_error, but i am wondering how can I make my error handling class intercept any kind of error although i'm not aware about it and i don't know if it will happen. Is this possible? Thank you __