PHP 8.3.22 Released!

Voting

: max(seven, five)?
(Example: nine)

The Note You're Voting On

adam at adamhahn dot com
8 years ago
To expand upon the note by chris at ocproducts dot com. If you prepend @ to error_reporting(), the function will always return 0.

<?php
error_reporting
(E_ALL);
var_dump(
error_reporting(), // value of E_ALL,
@error_reporting() // value is 0
);
?>

<< Back to user notes page

To Top