Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

mvnobrega's avatar

json_decode return null

I can't use my json file on @foreach, because json_decode returns null. Look:

My perguntas.json file:

{

"questions": [
    { "ck": ["c1", "c6"], "id": 1, "text": "Você se sente \"desligado\" ou \"aéreo\"?"  },
    { "ck": ["c1", "c2"], "id": 2, "text": "Tem tendências adictas compulsivas " },
    { "ck": ["c1"], "id": 3, "text": "Sente-se abatido e com pouca energia?" },
    { "ck": ["c1"], "id": 4, "text": "Sente-se apreensivo ou ansioso sem motivo aparente?" },

]

}

My Controller:

        $perguntas = file_get_contents(resource_path('lang/pt-br/perguntas.json'));

        $getperguntas =  json_decode($perguntas);

This does not work, as I get NULL. If I print on the screen without doing the decode, my json looks like this: https://prnt.sc/uuw51r

Why doesn't it work and how do I solve it?

0 likes
4 replies
a4ashraf's avatar

@mvnobrega

you json file not valid

try with this

{

	"questions": [{
			"ck": ["c1", "c6"],
			"id": 1,
			"text": "Você se sente \"desligado\" ou \"aéreo\"?"
		},
		{
			"ck": ["c1", "c2"],
			"id": 2,
			"text": "Tem tendências adictas compulsivas "
		},
		{
			"ck": ["c1"],
			"id": 3,
			"text": "Sente-se abatido e com pouca energia?"
		},
		{
			"ck": ["c1"],
			"id": 4,
			"text": "Sente-se apreensivo ou ansioso sem motivo aparente?"
		}

	]

}
1 like
click's avatar
click
Best Answer
Level 35

You have a comma after your last } within questions. In PHP it is allowed but in JSON it is not.

This is the same json without the comma, and this is valid:

{
  "questions": [
    {
      "ck": [
        "c1",
        "c6"
      ],
      "id": 1,
      "text": "Você se sente \"desligado\" ou \"aéreo\"?"
    },
    {
      "ck": [
        "c1",
        "c2"
      ],
      "id": 2,
      "text": "Tem tendências adictas compulsivas "
    },
    {
      "ck": [
        "c1"
      ],
      "id": 3,
      "text": "Sente-se abatido e com pouca energia?"
    },
    {
      "ck": [
        "c1"
      ],
      "id": 4,
      "text": "Sente-se apreensivo ou ansioso sem motivo aparente?"
    }
  ]
}
1 like

Please or to participate in this conversation.