[PHP] custom error handling + fopen

2003-04-04 Thread Dan Rossi
hi guys i have a custom error handler setup within a class , i can trigger it with trigger_error , also i am sending my ustom triggers to E_USER_WARNING , althogh even having fopen supressed @fopen i am still getting errors returned to the same area as my current codes , how can i seperate my

Re: [PHP] custom error handling + fopen

2003-04-04 Thread Rasmus Lerdorf
You can't really separate them. In your error handler you can check what type of error it was and treat them differently. On Sat, 5 Apr 2003, Dan Rossi wrote: hi guys i have a custom error handler setup within a class , i can trigger it with trigger_error , also i am sending my ustom triggers

RE: [PHP] custom error handling + fopen

2003-04-04 Thread Dan Rossi
- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED] Sent: Saturday, April 05, 2003 2:11 PM To: Dan Rossi Cc: Php-General Subject: Re: [PHP] custom error handling + fopen You can't really separate them. In your error handler you can check what type of error it was and treat them differently