Practice Make a Perfect Man
<?php $x=12; $y=9; $z=$x|$y; // 13 $z1=$x&$y; //8 $z2=$x^$y; //5 echo $z; echo $z1; echo $z2; ?>
No comments: