RSS feeds in PHP

后端 未结 6 850
感动是毒
感动是毒 2021-01-03 02:46

Just wondering if someone could suggest a PHP library that would allow me to read the data of an RSS feed and write it to a MySQL database. Also, if possible, provide a link

6条回答
  •  没有蜡笔的小新
    2021-01-03 03:22

    RSS is a pretty simple format - there is no great need to use a separate library.

    I'd just use simplexml, because I don't wanna spend the effort learning another library, and keeping up with its development.

    Here is a simple PHP script for showing the latest Stackoverflor posts with simplexml:

    
    

    title; ?>

提交回复
热议问题