I am going through a php script which has something like this
echo "<pre>";
var_export($someObj->details);
echo "</pre>";
and the output is something like : http://pastebin.com/gEAFg6R4
now how do I fetch paricular lines for eg if I just want to fetch the height, if have vehicle or not and is male or female ? what is var_export($someObj->details); doing ?