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.

After doing a JSON decode, I get the following:

[0] => stdClass Object
        (
            [@type] => d
            [@rid] => #8:0
            [@version] => 4
            [@class] => users
            [email] => xyz@something.com
            [username] => SomeName
            [password] => password
            [out] => Array
                (
                    [0] => #7:1
                )

        )

...

How do I access the @rid or @class properties of the object?

share|improve this question
Do you need an object from json_decode, or would you like an array instead? – Jan Hančič Apr 10 '12 at 13:28
you might also be able to do $obj->{'@rid'} – Garry Welding Apr 10 '12 at 13:28
Thanks, also helpful. – churchill614 Apr 10 '12 at 13:42
possible duplicate of What is @ in an object property? – Quentin Apr 10 '12 at 13:42

2 Answers

up vote 0 down vote accepted

Use $t = json_decode($var, true) to get an associative array back1
Then you can access it via $t['@type']

1 2nd parameter of json_decode: When TRUE, returned objects will be converted into associative arrays.

share|improve this answer

You can access those variables using: $obj->{"@type"}.

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.