PHP & MySQL® Web Development All-in-One Desk Reference for Dummies®
by Janet Valade, Tricia Ballad, Bill Ballad
1.11. Understanding PHP Error Messages
PHP tries to be helpful when problems arise. It provides different types of error messages and warnings with as much information as possible.
1.11.1. Types of PHP error messages
PHP can display five types of messages. Each type of message displays the name of the file where the error was encountered and the line number where PHP encountered the problem. Different error types provide additional information in the error message. The types of messages are
Parse error: A parse error is a syntax error that PHP finds when it scans the script before executing it.
Fatal error: PHP has encountered a serious error that stops the execution of the script.
Warning: PHP sees a problem, but the problem isn't serious enough to prevent the script from running.
Notice: PHP sees a condition that might be an error or might be perfectly okay.
Strict: Strict messages, added in PHP 5, warn about coding standards. You get strict messages when you use language that is poor coding practice or has been replaced by better code.
|
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access
