PHP Получить значение из JSON

Допустим, у меня есть этот 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.

Как это исправить?

Ответы на вопрос(1)

Ваш ответ на вопрос