我已将国家/地区及其代码存储在如下数组中
$countries = array (
'AF' => 'Afghanistan',
'AX' => 'Åland Islands',
'AL' => 'Albania',
'DZ' => 'Algeria'
);
假设我从表格中得到国家代码“AF”或国家名称“阿富汗”,如何从数组中输出代码和名称?
我想要得到的输出是:阿富汗空军。稍后我将在下面的代码中使用它。
echo $countries['AF'] gives me the country name, but how do I output both;