2

次の JSON があるとします。

{
  "achievement": [
    {
      "title": "Ready for Work",
      "description": "Sign up and get validated",
      "xp": 50,
      "difficulty": 1,
      "level_req": 1
    },
    {
      "title": "All Around Submitter",
      "description": "Get one piece of textual content approved in all five areas.",
      "xp": 500,
      "difficulty": 2,
      "level_req": 1
    }
}

私はこれをPHPで試しています:

$string = file_get_contents("achievements.json");
$json_a=json_decode($string,true);

$getit = $json_a->achievement['title'][1];

実績の最初の「ID」を取得しようとしていますREADY FOR WORK..

これを修正するにはどうすればよいですか?

4

1 に答える 1

9

の 2 番目のパラメーターを に設定するjson_decodetrue、配列が返されます。

$json_a=json_decode($string,true);

配列を返します。

$getit = $json_a['achievement'][1]['title'];
于 2012-09-26T09:06:06.213 に答える