PHP 8.5.0 Alpha 4 available for testing

Voting

: four plus two?
(Example: nine)

The Note You're Voting On

M. T.
15 years ago
Be aware of using error control operator in statements before include() like this:

<?PHP

(@include("file.php"))
OR die(
"Could not find file.php!");

?>

This cause, that error reporting level is set to zero also for the included file. So if there are some errors in the included file, they will be not displayed.

<< Back to user notes page

To Top