btray77 Posted October 25, 2009 Share Posted October 25, 2009 I have a datafeed I'm getting data from, and I need to be able to loop though the datafeed and store information in a stdClass object or Array. I've tried: $x = json_decode( $x ); foreach ( $x as $item ) { $info[] = $item; //ERROR } How do I do this? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/178909-looping-through-a-datafeed-question/ Share on other sites More sharing options...
trq Posted October 25, 2009 Share Posted October 25, 2009 $x = json_decode($x, true); $x is now an associative array. Quote Link to comment https://forums.phpfreaks.com/topic/178909-looping-through-a-datafeed-question/#findComment-943881 Share on other sites More sharing options...
btray77 Posted October 25, 2009 Author Share Posted October 25, 2009 Thanks, what about keeping it as a stdObj? -Brad Quote Link to comment https://forums.phpfreaks.com/topic/178909-looping-through-a-datafeed-question/#findComment-943884 Share on other sites More sharing options...
trq Posted October 25, 2009 Share Posted October 25, 2009 $x = json_decode($x); Quote Link to comment https://forums.phpfreaks.com/topic/178909-looping-through-a-datafeed-question/#findComment-943885 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.