fork download
  1. <?php
  2.  
  3. $age = '20';
  4.  
  5. if (($age>=15 && $age<=19) == ($age>=15 & $age<=19)) {
  6. echo "Yep, there is no difference!";
  7. }
Success #stdin #stdout 0.01s 52488KB
stdin
Standard input is empty
stdout
Yep, there is no difference!