What are the three classes of errors that can occur in PHP?

  • Notices, warnings, and errors
  • Syntax errors, runtime errors
  • Fatal errors, exceptions, and warnings
  • Informational errors, logical errors
In PHP, the three classes of errors are notices (non-critical issues that should be addressed), warnings (potential issues that might cause problems), and errors (critical issues that prevent script execution). Learn more: http://php.net/manual/en/errorfunc.constants.php
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *