Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
555 views
in Technique[技术] by (71.8m points)

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

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...