I can't figure out why the result is false 4.
小周
小周 2018-07-27 15:59:17
0
1
1214

<?php
$x = false;
$y = 3;
if($x & $y ){
echo 'true';
}else{
echo 'False';
}
//Look at the result again
echo $y;
?>


小周
小周

reply all(1)
哎呀

Distinguish the difference between & and &&

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template