Skip to content
Advertisement

Trying to get property ‘month’ of non-object even though value exists

I am currently decoding part of a JSON file, however getting a ‘Trying to get property ‘month’ of non-object’ error, although print_r and var_dump both show that the value exists.

JSON:

JavaScript

PHP:

JavaScript

Error:

JavaScript

It only seems to fail after the ‘review’ key, as the other values are definitely there, and are shown on var_dump:

JavaScript

If anyone has any ideas it would be greatly appreciated.

Advertisement

Answer

In your code you have

JavaScript

so in the line before you try to get the $month variable, you reassign the variable $review to something else, so just change this field name to something else to something like…

JavaScript

and any other references

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement