xref: /PHP-7.4/tests/basic/010.phpt (revision d94136fc)
1--TEST--
2Testing | and & operators
3--FILE--
4<?php $a=8; $b=4; $c=8; echo $a|$b&$c?>
5--EXPECT--
68
7