try/catch PHP block
try/catch is PHP block to handle errors. A programming operation where the error may occur is placed within try block. If error occurs then code within catch block will be executed. If there is no error, then code within try block will be executed.
Comments
Post a Comment