当前位置: 首页>>代码示例>>PHP>>正文


PHP RSS::out方法代码示例

本文整理汇总了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);
 }
开发者ID:hotarucms,项目名称:hotarucms,代码行数:21,代码来源:Feeds.php


注:本文中的RSS::out方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。