I want to parse this RSS (from a bit.ly user stream) to grab all bit.ly links and related data, and store all new items into a database. What are examples of easy ways to parse RSS (e.g. simple helpers with small footprint)? I’m a Code Igniter rookie, so please be gentle 🙂
Share
I ended up by simply using
json_decode(file_get_contents('http://bitly.com/u/joaoramos.json'));and then dug into the object to get what I needed.