按发布时间对结果进行分类?
我使用 simplepie 和 codeigniter 从多个站点获取大量提要。 我想按发布时间对所有结果进行分类。例如在同一页面中发布5分钟、15分钟、30分钟、1小时、2小时等!
知道如何做到这一点吗?
我应该在所有这些时间中执行自己的查询并将其推送到查看页面还是应该在 foreach 内的视图页面中执行此操作?
代码示例也非常受欢迎! :)
谢谢!
I'm using simplepie with codeigniter to fetch lots of feeds from multiple sites.
I want to category all results by time of publish.. Such as published in 5 minutes, 15 minutes, 30 minutes, 1 hours, 2 hours etc.. in same page!
Any idea how to do this?
Should I do for all those times own query and push those to view page or should I do it in view page inside foreach?
Code examples are very welcome as well! :)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将构建一个模型,用于通过简单的饼图获取提要。
我什至会在模型中对它们进行分类。
我将在控制器内调用适当的模型函数,并将该方法返回的数据传递给视图进行显示。
唯一复杂的部分当然是模型。
I would build a model for getting the feeds with simple pie.
I would even categorize them in the model.
I would call the appropriate model function inside my controller and pass the data return bu that method to the view for displaying.
The only complex part is of course the model.