我有一个用于项目工作的XML文件。我需要从XML文件中获取数据。该文件包含以下内容:
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:szgd="http://www.spotzot.com/gdfeed" xmlns:szbb="http://www.spotzot.com/bbfeed">
<channel>
<item>
<title>Service & Maintenance under $50</title>
<description>7 Items | Prestone, Campbell Hausfeld, Custom Accessories, Custom, KD Tools</description>
<szgd:instore>Y</szgd:instore>
</item>
</channel>
</rss>
我正在使用$newtitle=$newxml->channel->item->title;
从title中获取数据。它成功返回了标题。
如何使用php从我的页面中的标签中获取数据?
答案 0 :(得分:0)
使用php的simplexml函数。
加载它:
$xml = simplexml_load_string($xml);
如果你有一个字符串或
如果您有档案,请$xml = simplexml_load_file($xmlFile);
。
如果xml有效,您将获得SimpleXmlElement。请查看以下链接:http://php.net/manual/en/class.simplexmlelement.php。在那里你会发现几个关于如何从中获取数据的函数。
顺便说一下。您真正想要获得哪些数据?