本文整理汇总了PHP中RSSFeed::buildRSS方法的典型用法代码示例。如果您正苦于以下问题:PHP RSSFeed::buildRSS方法的具体用法?PHP RSSFeed::buildRSS怎么用?PHP RSSFeed::buildRSS使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类RSSFeed
的用法示例。
在下文中一共展示了RSSFeed::buildRSS方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: RSSFeed
<?php
error_reporting(E_ALL);
require_once './defines.php';
require_once './rss.class.php';
$myfeed = new RSSFeed();
$myfeed->setChannel('RHJunior Webcomics', 'http://rhjunior.com/', 'Updates on RHJunior Webcomics');
$myfeed->addItem('TOTQ', 'http://www.rhjunior.com/totq/00534.html', htmlspecialchars('<img src="http://www.rhjunior.com/totq/Images/00538.png"/>'));
echo $myfeed->buildRSS();
开发者ID:Nayruden,项目名称:rhjunior,代码行数:9,代码来源:rss.php本文标签属性:
示例:示例英语
代码:代码编程
PHP:phpstudy
RSSFeed:RSSFeed
buildRSS:buildRSS