fork download
  1. <?php
  2.  
  3.  
  4. $city = 'Москва';
  5. if( $city === 'Москва' OR $city === 'Санкт-Петербург') {
  6. echo "true 1\n";
  7. }
  8.  
  9. if( $city === 'Москва' || $city === 'Санкт-Петербург') {
  10. echo "true 2";
  11. }
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
true 1
true 2