将推文存储到数据库的简单方法是什么?
我有一个 php 函数,可以从 Twitter 和 Twitter 检索推文。在 simplexml_load_string 中返回它们。我必须将它们存储到数据库中。在页面加载时将它们存储到数据库中的简单方法是什么?我已经尝试过 ajax 但从 twitter 返回的 json 似乎无效。比X提前很多。
I have a php function that retrieves tweets from Twitter & returns them in simplexml_load_string. I have to store those into database. Whats is an easy way to store those into database on page load? I have already tried my luck with ajax but json that is returned from twitter seems invalid. thanX a Lot in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将它们以 XML 形式存储在表中,然后根据需要进行解析即可。
SimpleXML
Simply store them in the table as XML and then parse them on demand.
SimpleXML