好的,我被困在这里我有一个从上面的代码给出的 json 输出
$jsonurl = 'http://us.battle.net/api/d3/profile/'.$btag.'/';
$json = file_get_contents($jsonurl,0,null,null);
$json_output = json_decode($json);
我可以使用例如检索数据
$json_output->code
但是,我有一个特定的数据需要检索
$json_output->timePlayed->demon-hunter
这个我无法检索,因为“恶魔猎人”旁边的“-”有什么提示吗?