Exception handling in PHP

What is an exception? An exception indicates that there is a problem while running an application. Here’s a quote from Wikipedia on exception handling: Exception handling is a programming technique that allows a programmer to control errors that occur during the execution of a computer program.(wikipedia.org) So, how do we handle exceptions in PHP? In […]

read more

Comments