以下のコードはjson(一部のみ)です。コンボボックスに全通貨を入れる必要があります。
{
"AED": "United Arab Emirates Dirham",
"AFN": "Afghan Afghani",
"ALL": "Albanian Lek",
"AMD": "Armenian Dram",
"ANG": "Netherlands Antillean Guilder",
"AOA": "Angolan Kwanza",
"ARS": "Argentine Peso"
}
ここまでやってみました...
$ch2 = curl_init("http://openexchangerates.org/api/currencies.json");
curl_setopt($ch2, CURLOPT_RETURNTRANSFER, 1);
// Get the data:
$json2 = curl_exec($ch2);
curl_close($ch2);
$currency->LKR; // Here I can retreive a single line
// Decode JSON response:
$currency = json_decode($json2);
私はコンボボックスに全通貨を入れなければなりません。