stdClass Object ([Sector] => Manufacturing [Date Found] => 2010-05-03 08:15:19)
So I can access [Sector] by using $object->Sector but how can I access [Date Found] ?
[Sector]
$object->Sector
[Date Found]
You can do it this way:
$object->{'Date Found'}
2.1m questions
2.1m answers
60 comments
57.0k users