How would I go about combining multiple users twitter feeds into one list and display them on my page?
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
- Using similar_text and strpos together
You'd have to go in, I'd say, three steps :
curl
, or download+read it withsimplexml_load_file
.array_merge
usort
As a sidenote : downloading several RSS feeds each time you want to display your resulting page is not a good idea : it will slow your site down a lot -- which means you need to put some caching mecanism in place :