[Solved] Read var_dump data with PHP
You’ll want to read the var dump types to determine how to access the data structure. If it says object (e.g., in your dump it first lists object(stdClass)#13), then you’ll use -> operator to access the listed elements (e.g., $object->contact). If it says array, you can use index notation [0] or, if more than one … Read more