How can I convert an array like this to an object?
[128] => Array ( [status] => "Figure A. Facebook\'s horizontal scrollbars showing u
You could also do this by adding (object) on left of variable to create a new object.
" text" ); var_dump($a); $b = (object)$a; var_dump($b); var_dump($b->status);
http://codepad.org/9YmD1KsU