我有这个功能
private function getCurrencyByCountry($country){
switch($country){
case "US": return "USD"; break;
case "UA": return "UAH"; break;
case "FR":
case "DE":
case "ES":
case "IT":return "EUR"; break;
default: return "USD-default";
}
}
当我使用参数“UA”调用此方法时,此函数返回“USD-default”。为什么?