使用 RSS feed 或 Curl 命令创建新闻 DIV
我正在尝试使用来自另一个站点的一些数据作为我的新闻源,该数据会自动更新。我有权使用此信息。
我正在尝试决定是只使用 RSS 源并将其添加到我的网站还是使用 Command Curl。 您建议使用什么?
我希望文本进入页面上 div 中的矩形空间,这样我就可以自定义它以适应页面的颜色和设计。
谢谢
I'm trying to use some data from another site as a news feed on mine that will automatically update. I have permission to use this information.
I'm trying to decide whether to just use the RSS feed and add that to my site or use the Command Curl.
What do you recommend using?
I want the text to go in to a rectangle space in a div on my page and so i can customize this to go with the colour and design of my page.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果有 RSS,请使用它!这就是它的用途。
获取 RSS 的文本,并将其显示在 div 中。
您还应该链接到 RSS 中提供的页面,因为在大多数情况下这是所有者想要的。
使用
simplexml_load_file()
函数读取 RSS,并使用 simpleXML 继续处理。另请参阅一些文档:你应该能够自己处理。如果你不这样做,尝试做一些关于 simplexml 甚至 PHP 的教程
If there is a RSS, use that! That's where it's for.
Get the text of the RSS, and display it in a div.
You should also link to the page, which is provided in the RSS, as that is in most cases something the owner would want.
Use
simplexml_load_file()
function to read the RSS, and proceed with it using simpleXML. See also some documentation:You should be able to handle it on your own. If you don't, try to do some tutorials on simplexml or even PHP