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 have a stdclass object as shown below:

stdClass Object
(     
    [text] => Parent
    [values] => Array
        (
            [0] => stdClass Object
                (
                    [id] => /m/0c02911
                    [text] => Laurence W. Lane Jr.
                    [url] => http://www.freebase.com/view/m/0c02911
                )

        )

)

I iterate over multiple such objects, some of which have

stdClass Object
(
    [text] => Named after
    [values] => Array
        (
            [0] => stdClass Object
                (
                    [id] => /m/0c02911
                    [text] => Stanford
                    [url] => SomeURL
                )

        )

)

I was wondering how I would access the "values" object if it comes after a "text" that has "Parent" as its value?

share|improve this question
have you tried something along the lines of Object['text']['values'][0]['id'] That's pretty deep array ;) – robx May 3 '11 at 21:18
The problem is it would return the object with text value "Named after", and I only want the ones with text value "Parent". Thanks! – Rio May 3 '11 at 21:19
1  
in your loop do a check if(Object['text'] === 'Parent') echo 'Found parent' – robx May 3 '11 at 21:23
I'm unsure what language you're using to iterate, but in PHP, it's $object->values[0]->id. Edit: Oh and "values" is not an object, but an object property. – Christian May 3 '11 at 21:31
Also @robx how do I access the next value? Because the object is not Object['text']['values'], but Object['values'] – Rio May 3 '11 at 21:59

2 Answers

up vote -1 down vote accepted

What you are looking for is the Object['values'][0]: 'values' is the keymap just like 'text', and [0] is the index inside that array you wish to access. so if you would like to get the id deep in the nest, you'd have to do something like

Object['values'][0]['id']

or

Object['values'][0]->id

which should give you /m/0c02911. But I have no idea how you are doing your loop, so you will have to adjust it to your needs and place proper variables where they need to go in that code in your loop. Not exactly sure which language you are working with.

share|improve this answer
The issue here being that I would get the Object['values'] that came after the one that is Object['text'] = Named after, which isn't what I want ;) – Rio May 4 '11 at 5:10
if you had used the checking condition up there as I mentioned earlier conjoined with this piece of code, you'd be able to find the array paired with the "Parent". I don't see any reason you can't do it if you were able to find the Parent with the echo statement. – robx May 4 '11 at 5:31
Sorry if couldn't help, but thought id try. If you could find and get it to print when locating the parent, then all that's left is your syntax. But if that wasn't you who did the flags up on the checking condition, my mistake for making the assumption ;) – robx May 4 '11 at 6:16

turn it to array:

$value = get_object_vars($object);

echo $value['values']['0']['id']
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.