PHP 8.5.0 Alpha 4 available for testing

Voting

: max(zero, zero)?
(Example: nine)

The Note You're Voting On

Anonymous
19 years ago
NEVER EVER use this function with boolean variables !!!
Or you'll get something like this: min(true, 1, -2) == true;

Just because of:
min(true, 1, -2) == min(min(true,1), -2) == min(true, -2) == true;

You are warned !

<< Back to user notes page

To Top