Current Codes:
You can make use of in_array() in PHP.
$os = array("uk", "us"); // You can set multiple check conditions here if (in_array("uk", $os)) //Founds a match ! { echo "Got you"; }