1--TEST-- 2Testing | and & operators 3--FILE-- 4<?php $a=8; $b=4; $c=8; echo $a|$b&$c?> 5--EXPECT-- 68 7