Simplepie 和斜杠:评论

发布于 2024-10-23 23:38:02 字数 167 浏览 2 评论 0原文

我使用 SimplePie 在我的页面上显示 RSS 源。 现在我想显示评论数量。

RSS:

<slash:comments>0</slash:comments>

我怎样才能用 Simplepie 来展示这个?

I use SimplePie to display an RSS Feed on my Page.
Now I want to show the number of comments.

The RSS:

<slash:comments>0</slash:comments>

How can I show this with Simplepie?

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

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

发布评论

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

评论(1

烂柯人 2024-10-30 23:38:02

您想要使用 $item->get_item_tags()来做到这一点。据猜测,您需要 http://purl.org/rss/1.0/modules/slash/ 命名空间,以及 comments 标记。

$comments = $item->get_item_tags('http://purl.org/rss/1.0/modules/slash/', 'comments');

然后您可以查看此数据结构以找出您需要的内容。猜测一下...

$number = $comments[0]['data'];

You want to use $item->get_item_tags() to do this. At a guess, you want the http://purl.org/rss/1.0/modules/slash/ namespace, with the comments tag.

$comments = $item->get_item_tags('http://purl.org/rss/1.0/modules/slash/', 'comments');

You can then take a look at this data structure to work out what you need. At a guess...

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