我尝试从json文件中获取EUR的值,但没有结果,有人可以告诉我我做错了什么吗?预先谢谢你
<?php
$data = file_get_contents('currency.json');
$assocArray = json_decode($data, true);
echo($assocArray['EUR']); //
?>
这是json
{
"base": "GEL",
"rates": {
"EUR": 0.32,
"RUB": 25.16,
"USD": 0.38
}
}