Concept Flow - PHP error types and levels
Start PHP script
Code runs
Error occurs?
No→Script continues
Yes
Identify error type
Match error level
Handle error (display/log/ignore)
Script ends or continues
PHP runs code and checks if an error happens. If yes, it finds the error type and level, then handles it accordingly.