I have a php script lets say during execution the scripts throws an exception. I want my PHP to resume from where it left off (where it had thrown the exception).
Sh
You might be able to use the finally part of the try catch, if you will not get an exception in execution.
try { // some crashing code } catch (Exception $e) { //some catch code } finally { //code that will run anyways. }