PHP 8.5.0 Alpha 2 available for testing

Voting

: min(five, eight)?
(Example: nine)

The Note You're Voting On

fabmlk
10 years ago
Watch out for the difference of priority between 'and vs &&' or '|| vs or':
<?php
$bool
= true && false;
var_dump($bool); // false, that's expected

$bool = true and false;
var_dump($bool); // true, ouch!
?>
Because 'and/or' have lower priority than '=' but '||/&&' have higher.

<< Back to user notes page

To Top