Section 1

Preview this deck

Syntactical

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

4 years ago

Date created

Mar 1, 2020

Cards (10)

Section 1

(10 cards)

Syntactical

Front

_____ errors will prevent a PHP script from running.

Back

True

Front

Enabling display_errors in the PHP configuration file will result in all PHP errors always being shown.

Back

warnings

Front

The _____ level of PHP errors is normally indicative of a problem but does not stop the execution of the script.

Back

Logical

Front

_____ errors will not be reported by PHP.

Back

notices

Front

The _____ level of PHP errors may or may not be indicative of a problem but does not stop the execution of the script.

Back

error_reporting()

Front

"To change the level of error reporting in an individual PHP script, use the _____ function."

Back

errors

Front

The _____ level of PHP errors is indicative of a problem and does stop the execution of the script.

Back

highest

Front

"During development, scripts should be set on the _____ level of error reporting."

Back

set_error_handler()

Front

"To have a PHP script use your own custom error handler, provide the name of that error handling function to PHP?s _____ function."

Back

Run-time

Front

_____ errors only appear during the execution of a script.

Back