Re: [PHP] Backtrace in fatal error?

2010-09-01 Thread freeman3
Thanks! I didn't notice the register_shutdown_function function. But it executes always I want to run it only to track fatal error. Also I can't get the backtrace properly:( I can't use 5.3 so I guess it works differently in 5.2 Richard Quadling wrote: On 31 August 2010 09:49, Paul Freeman

[PHP] Re: require_once

2010-09-01 Thread freeman3
I think the files included just when you call it to include. How do you mean it later? What's in that file? A class or direct code? David Mehler wrote: Hello, I've got probably a simple question on require_once. I've got a file that has require_once at the top of it pulling in another file

[PHP] Re: error_log file error reporting level

2010-09-01 Thread freeman3
I don't know that too. I think the solution is to use your own error handler and save error in some another file. hovnocuc wrote: Hello, [ Question ] How do I force error_log to log only errors specified in the error_reporting directive? Is it even possible or did I get something wrong?