PHP SimpleXML:提要修改

发布于 2024-10-12 07:01:01 字数 1023 浏览 7 评论 0原文

我想修改 RSS 提要。我想从 feed 中删除 X 个项目,然后以 XML 形式返回新的 feed。

<?php
class RSS {
    private $simpleXML;

    public function __construct($address) {
        $xml = file_get_contents($address);
        $this->simpleXML = simplexml_load_string($xml);
    }

    private function getRssInformation() {
        // Here I want to get the Rss Head information ...
    }

    // Here I get X items ...
    private function getItems($itemsNumber, $UTF8) {
        $xml = null;
        $items = $this->simpleXML->xpath('/rss/channel/item');

        if(count($items) > $itemsNumber) {
            $items = array_slice($items, 0, $itemsNumber, true);
        }

        foreach($items as $item) {
            $xml .= $item->asXML() . "\n";
        }

        return $xml;
    }

    public function getFeed($itemsNumber = 5, $UTF8 = true) {
        // Here i will join rss information with X items ...
        echo $this->getItems($itemsNumber, $UTF8);
    }
}
?>

用XPath可以吗? 谢谢。

I want to modify an RSS feed. I want to remove X items from feed and then return the new feed as XML.

<?php
class RSS {
    private $simpleXML;

    public function __construct($address) {
        $xml = file_get_contents($address);
        $this->simpleXML = simplexml_load_string($xml);
    }

    private function getRssInformation() {
        // Here I want to get the Rss Head information ...
    }

    // Here I get X items ...
    private function getItems($itemsNumber, $UTF8) {
        $xml = null;
        $items = $this->simpleXML->xpath('/rss/channel/item');

        if(count($items) > $itemsNumber) {
            $items = array_slice($items, 0, $itemsNumber, true);
        }

        foreach($items as $item) {
            $xml .= $item->asXML() . "\n";
        }

        return $xml;
    }

    public function getFeed($itemsNumber = 5, $UTF8 = true) {
        // Here i will join rss information with X items ...
        echo $this->getItems($itemsNumber, $UTF8);
    }
}
?>

Is it possible with XPath?
Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白昼 2024-10-19 07:01:01

另一种方法(但可能更干净):

private function getItems($itemsNumber, $UTF8) {
    $xml = '<?xml version="1.0" ?>
                <rss version="2.0">
                    <channel>';

    $i = 0;

    if (count($this->simpleXML->rss->channel->item)>0){
        foreach ($this->simpleXML->rss->channel->item as $item) {
            $xml .= str_replace('<?xml version="1.0" ?>', '', $item->asXML());
            $i++;
            if($i==$itemsNumber) break;
        }
    }
    $xml .='  </channel></rss> ';

    return $xml;
}  

但我认为 asXML();添加 XML 声明:

<?xml version="1.0" ?>

我编辑了我的代码。它很脏,但应该可以用。还有更好的主意吗?

Another way to do it (but could be cleaner) :

private function getItems($itemsNumber, $UTF8) {
    $xml = '<?xml version="1.0" ?>
                <rss version="2.0">
                    <channel>';

    $i = 0;

    if (count($this->simpleXML->rss->channel->item)>0){
        foreach ($this->simpleXML->rss->channel->item as $item) {
            $xml .= str_replace('<?xml version="1.0" ?>', '', $item->asXML());
            $i++;
            if($i==$itemsNumber) break;
        }
    }
    $xml .='  </channel></rss> ';

    return $xml;
}  

But I think asXML(); add the XML declaration :

<?xml version="1.0" ?>

I edited my code. It's dirty but it should work. Any better idea?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文