Re: [PHP] Exception thrown without a stack frame

2008-01-28 Thread Richard Lynch
On Sat, January 26, 2008 2:43 am, Nathan Rixham wrote: way offf topic-ish here.. class destructors, surely they differ from the register_shutdown_function in execution style? seeing as one can echo / do a bit of jiggery pokery before the buffers close. what exactly is the difference?

Re: [PHP] Exception thrown without a stack frame

2008-01-26 Thread Nathan Rixham
way offf topic-ish here.. class destructors, surely they differ from the register_shutdown_function in execution style? seeing as one can echo / do a bit of jiggery pokery before the buffers close. what exactly is the difference? Richard Lynch wrote: On Fri, January 25, 2008 1:31 pm,

Re: [PHP] Exception thrown without a stack frame

2008-01-26 Thread Jochem Maas
Nathan Rixham schreef: way offf topic-ish here.. class destructors, surely they differ from the register_shutdown_function in execution style? seeing as one can echo / do a bit of jiggery pokery before the buffers close. what exactly is the difference? the problem with destructors is

Re: [PHP] Exception thrown without a stack frame

2008-01-25 Thread Jochem Maas
Jochem Maas schreef: I'm getting exceptions thrown without a stackframe. I understand what this means but not how it can happen given the following: 1. *every* frontend script on the site is wrapped in a try/catch block 2. I have set an exception handler to dump these so-called uncaught

[PHP] Exception thrown without a stack frame

2008-01-25 Thread Jochem Maas
I'm getting exceptions thrown without a stackframe. I understand what this means but not how it can happen given the following: 1. *every* frontend script on the site is wrapped in a try/catch block 2. I have set an exception handler to dump these so-called uncaught exceptions in the error log

Re: [PHP] Exception thrown without a stack frame

2008-01-25 Thread Jochem Maas
Peter Ford schreef: Jochem Maas wrote: Jochem Maas schreef: I'm getting exceptions thrown without a stackframe. I understand what this means but not how it can happen given the following: 1. *every* frontend script on the site is wrapped in a try/catch block 2. I have set an exception handler

Re: [PHP] Exception thrown without a stack frame

2008-01-25 Thread Richard Lynch
On Fri, January 25, 2008 1:31 pm, Jochem Maas wrote: setup as via register_shutdown_function(). I missed that bit. Sorry for the noise. shutdown functions are run outside the normal context of PHP, and need special care. Output won't go anywhere, and try/catch won't work, as the bulk of the

Re: [PHP] Exception thrown without a stack frame

2008-01-25 Thread Jochem Maas
Richard Lynch schreef: On Fri, January 25, 2008 4:37 am, Jochem Maas wrote: I'm getting exceptions thrown without a stackframe. I understand what this means but not how it can happen given the following: I wonder if you can wrap a try/catch around the loading of the constants and class

Re: [PHP] Exception thrown without a stack frame

2008-01-25 Thread Richard Lynch
On Fri, January 25, 2008 4:37 am, Jochem Maas wrote: I'm getting exceptions thrown without a stackframe. I understand what this means but not how it can happen given the following: I wonder if you can wrap a try/catch around the loading of the constants and class definitions? Or you already

Re: [PHP] Exception thrown without a stack frame

2008-01-25 Thread Peter Ford
Jochem Maas wrote: Jochem Maas schreef: I'm getting exceptions thrown without a stackframe. I understand what this means but not how it can happen given the following: 1. *every* frontend script on the site is wrapped in a try/catch block 2. I have set an exception handler to dump these

Re: [PHP] Exception thrown without a stack frame

2008-01-25 Thread Eric Butera
On Jan 25, 2008 5:37 AM, Jochem Maas [EMAIL PROTECTED] wrote: I'm getting exceptions thrown without a stackframe. I understand what this means but not how it can happen given the following: 1. *every* frontend script on the site is wrapped in a try/catch block 2. I have set an exception

Re: [PHP] Exception thrown without a stack frame

2008-01-25 Thread Jochem Maas
Eric Butera schreef: On Jan 25, 2008 5:37 AM, Jochem Maas [EMAIL PROTECTED] wrote: I'm getting exceptions thrown without a stackframe. I understand what this means but not how it can happen given the following: 1. *every* frontend script on the site is wrapped in a try/catch block 2. I have

Re: [PHP] Exception thrown without a stack frame

2008-01-25 Thread Eric Butera
On Jan 25, 2008 8:43 AM, Jochem Maas [EMAIL PROTECTED] wrote: Eric Butera schreef: On Jan 25, 2008 5:37 AM, Jochem Maas [EMAIL PROTECTED] wrote: I'm getting exceptions thrown without a stackframe. I understand what this means but not how it can happen given the following: 1. *every*