Skip to content

Instantly share code, notes, and snippets.

@RareScrap
Created February 2, 2017 02:46
Show Gist options
  • Save RareScrap/71651b863f55006b80f4d27a604047d0 to your computer and use it in GitHub Desktop.
Save RareScrap/71651b863f55006b80f4d27a604047d0 to your computer and use it in GitHub Desktop.
Булевы операции в php имеют приоритеты, отличные от каноничной булевой алгебры
<?php
$a = true;
$b = false;
echo ($a || $a & $b); // по порядку - false, иначе true (Выводится true)
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment