Fetch values from nested xml (having : in tag name) in php

狂风中的少年 提交于 2019-12-13 23:53:45

问题


I have xml like this

<item>
    <title>test title</title>
    <link>www.test.com</link>
    <pubDate>Sun, 27 Aug 2017 06:22:29 +0000</pubDate>
    <post-id xmlns="com-wordpress:feed-additions:1">1111</post-id>
    <ev:tribe_event_meta xmlns:ev="Event">
        <ev:startdate>November 13, 2017</ev:startdate>
        <ev:enddate>November 14, 2017</ev:enddate>
        <ev:venue>venue</ev:venue>
        <ev:address>address</ev:address>
        <ev:city>city</ev:city>
        <ev:zip></ev:zip>
    </ev:tribe_event_meta>
</item>

Form this xml i am able to get title, link etc...

But im not able to get any data inside ev:tribe_event_meta. I need to get the value of ev:startdate, ev:enddate,etc.

Please help.

Thanks in advance.

Note: I'm using Drupal Feed Import.


回答1:


XML is just a text file. If your parser can't parse it like that try just doing search/replace on file before passing the file content to the parser. I.e. replace every "ev:startdate" with "ev_startdate" or something.



来源:https://stackoverflow.com/questions/47279722/fetch-values-from-nested-xml-having-in-tag-name-in-php

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!