I'm using tmhOAuth library to parse twitter stream in php.
It returned me variable $data
with this object
object sample for stackoverflow
{
"created_at":"Wed Jan 02 13:37:54 +0000 2013",
"id":286466350610776064,
"id_str":"286466350610776064",
...
}
looks like simple object, but how pull some data from this object?
$data->created_at
doesn't work, it broke my head, why??