PHP Exceptions and Error Handling
Say you want to report error concerned about fatal run-time, fatal compile-time error and core error which statement would you use?

error_reporting = E_ERROR | E_COMPILE_ERROR | E_CORE_ERROR
error_reporting = E_ALL
error_reporting = E_ERROR | E_COMPILE_WARNING | E_CORE_ERROR
error_reporting = E_ERROR | E_PARSE | E_CORE_ERROR

ANSWER DOWNLOAD EXAMIANS APP

PHP Exceptions and Error Handling
Which one of the following is the right description for the method getMessage() ?

Returns the message if it is passed to the class
Returns the message if it is passed to the object
Returns the message if it is passed to the constructor
Returns the message if it is passed to the file

ANSWER DOWNLOAD EXAMIANS APP