Hi,
I'm curious if anyone knows how I can save the current state of a php application (the one that is currently in memory, with everything including declared variables, $_POST, $_GET) when an error occurs?
Currently Zend Server does this. by monitoring the application and saving the snapshot of the php's memory etc. and shows a log related to that?
I'm not even sure if I'm using the right keywords. It's like debugging the application where you can see the values of the variables defined in the php. I just need the state of all the variables for that moment (which an error occurs).
thanks.