drryyiuib43562604 2011-05-20 08:11
浏览 46
已采纳

从Wordpress RSS提要获取每个帖子的标签

Given a Wordpress RSS feed, I would like to know how can I get all the tags for each post. As far as I can see, for each tag there's an entry like this <category><![CDATA[ ]]></category>. I'm using PHP's SimpleXmlElement.

Thank you.

  • 写回答

1条回答 默认 最新

  • douyong1905 2011-05-20 08:20
    关注

    You can use SimpleXMLElement::xpath to do this. So:

    <?php
    $x = new SimpleXMLElement($xml_for_one_item);
    $result = $x->xpath('category');
    foreach ($result as $cat) {
        // do something with the category string in $cat
    }
    ?>
    

    The only disadvantage here is you must pass the XML for only one item at a time. If you know which items you wish to use, change it to $x->channel->item[0]->xpath('.//category') for the first item, etc.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部