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 something like

            stdClass Object
(
[responseData] => stdClass Object
    (
        [results] => Array
            (
                [0] => stdClass Object
                    (
                        [GsearchResultClass] => GwebSearch
                        [unescapedUrl] => http://english-zone.com/index.php?ID=1
                        [url] => http://english-zone.com/index.php%3FID%3D1
                        [visibleUrl] => english-zone.com
                        [cacheUrl] => 
                        [title] => Grammar - English-Zone.Com - the BEST English-
                        [titleNoFormatting] => Grammar - English-Zone.Com - the BEST 
                        [content] => English as a Second Language fun site! Learn
                    )

I need to access "unescapedUrl" directly. How can I echo it out?

share|improve this question
What have you tried? – Tadeck Jul 14 '12 at 6:06
Please do not nurf questions as you had. Delete the question if required. – Hailwood Jul 14 '12 at 6:06

closed as too localized by Hailwood, Tadeck, Kolink, stewe, tereško Jul 14 '12 at 21:12

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Just follow the path...

[responseData] => stdClass Object

$o->responseData

[results] => Array

$o->responseData->results[0]

[0] => stdClass Object

echo $o->responseData->results[0]->unescapedUrl;

EDIT:

To get all elements of array iterate the results Array,

foreach($o->responseData->results as $v){ 
echo $v->unescapedUrl;
}
share|improve this answer
Thanks man. Now is there a way I can make "results[0]" to show all so like $o->responseData->results[ALL RESULTS]->unescapedUrl; :p – Alex Dunno Jul 14 '12 at 4:54
iterate the results Array, foreach($o->responseData->results as $v){ $v->unescapedUrl; } – GTSouza Jul 14 '12 at 4:56
ha thanks I just figured it out as well :p – Alex Dunno Jul 14 '12 at 4:59

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