how to loop through the structure that facebook returns

heloo

New Member
so I'm writing a facebook app in PHP and I'm not really sure how to loop through and get the data out of what facebook returns. Here's an example where it only returns one:\[code\]object(stdClass)#1 (1) { ["data"]=> array(1) { [0]=> object(stdClass)#2 (4) { ["name"]=> string(28) "Naruto Shippuden Episode 216" ["access_token"]=> string(97) "249129248435706|2f30355a536c4947ec32f522.1-1117572370|181703111883131|JYPPUX4rupaiWzJoZaD2r7jI1E4" ["category"]=> string(7) "Tv show" ["id"]=> string(15) "181703111883131" } }}\[/code\]Any ideas on how to loop through that and pull out the data in PHP? Thanks!
 
Back
Top