wordpress 的 xml 如何無縫接軌匯入 mysql ?
wordpress 的 xml 如何進入 mysql 數據庫?
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:wp="http://wordpress.org/export/1.2/"
>
<item>
<channel>
<title>cako 每家都超厲害,快找到你心中的NO.1</title>
<link>http://123123.123/13335</link>
<pubDate>Wed, 10 Jan 2018 03:01:21 +0000</pubDate>
<dc:creator><![CDATA[Ruby]]></dc:creator>
<guid isPermaLink="false">http://123123.123/?p=13335</guid>
<description></description>
<content:encoded>
類似這種格式,我還真不知道怎麼丟到數據庫裡面?
是有套件可以使用嗎?
希望大神指教!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以将xml当成字符串存到mysql中。 使用时可以用mysql提供的专门处理xml的方法ExtractValue() 抽取xml中的内容,或者使用UpdateXML()更新xml,两个方法可以在官方文档查阅
用这个方法,先把xml转成对象,然后在通过对象加入数据库。