Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying some facebook php sdk 3.0 tutorial but i get the error: Fatal error: Cannot use object of type stdClass as array

I guess it has to do with my php version 5.1.6 on live server ( on my xampp i have 5.3.1). Now normally i use jsonwrapper but it doesn't seem to work as i still get the

Fatal error: Cannot use object of type stdClass as array in /var/www/vhosts/mydomain.com/httpdocs/fb/base_facebook.php on line 560

Is there another way to get this working??

share|improve this question

1 Answer

up vote 3 down vote accepted

That has nothing to do with JSON.

You're doing $object['element'] when you should be doing $object->element, or you can turn $object into an array by casting it $object = (array)$object;.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.