本文整理汇总了PHP中RSS::out方法的典型用法代码示例。如果您正苦于以下问题:PHP RSS::out方法的具体用法?PHP RSS::out怎么用?PHP RSS::out使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类RSS
的用法示例。
在下文中一共展示了RSS::out方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: rss
/**
* Create an RSS Feed
*
* @param string $title - feed title
* @param string $link - url feed title should point to
* @param string $description - feed description
* @param array $items - $items[0] = array('title'=>TITLE, 'link'=>URL, 'date'=>TIMESTAMP, 'description'=>DESCRIPTION)
* @param string $content_type e.g. 'application/xml' or 'text/plain'
*/
public function rss($h, $title = '', $link = '', $description = '', $items = array(), $content_type = 'application/xml')
{
require_once EXTENSIONS . 'RSSWriterClass/rsswriter.php';
$feed = new \RSS($h->url(array('page' => 'rss')));
$feed->title = stripslashes(html_entity_decode(urldecode($title), ENT_QUOTES, 'UTF-8'));
$feed->link = html_entity_decode($link, ENT_QUOTES, 'UTF-8');
$feed->description = $description;
if ($items) {
$feed->addItem($items);
}
echo $feed->out($content_type);
}