<item rdf:about="http://test.com/test.html">
<title>test</title>
<link>http://test.com</link>
<description>
These are description for
</description>
<dc:creator>amosaic</dc:creator>
<dc:date>2014-01-16T18:15:03+09:00</dc:date>
<dc:subject>keyword</dc:subject>
<content:encoded>
我有像这样的xml文件。
我得到了xml文件并转换为对象
$xmlobj = simplexml_load_string($file)
然后在树枝
我可以访问
{{ xmlobj.title }}
{{ xmlobj.link }}
但我也想访问dc:date数据。
{{xmlobj.dc:date}}
不起作用。
你能帮帮我吗?