fork download
  1. <?php
  2. $country = array('RU','AM','UA','BY');
  3. $cc = "RU";
  4. if (array_search($cc,$country)===false) echo "$cc Низя!\n";
  5. else echo "$cc Можно!\n";
  6. $cc = "ES";
  7. if (array_search($cc,$country)===false) echo "$cc Низя!\n";
  8. else echo "$cc Можно!\n";
  9.  
  10. // your code goes here
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
RU Можно!
ES Низя!