What are the different errors in PHP?

Fatal errors will stop executing your script (like dont loading a function that you call)
Expression errors, also will stop execute your code ( like you dont close a while with } )
And warnings, are just warnings. Like you use a variable that have not set. Your script in this case, will continue running.
 
Back
Top