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


PHP RSSFeed::setCategory方法代码示例

本文整理汇总了PHP中RSSFeed::setCategory方法的典型用法代码示例。如果您正苦于以下问题:PHP RSSFeed::setCategory方法的具体用法?PHP RSSFeed::setCategory怎么用?PHP RSSFeed::setCategory使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在RSSFeed的用法示例。


在下文中一共展示了RSSFeed::setCategory方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: r

 // Set the feed description
 $rssFeed->setDescription('A little blog, which talks about Web programming');
 // Set the feed link
 $rssFeed->setLink('http://www.mywebsite.com/blog/rss/posts.php');
 // Set the feed publication date
 $rssFeed->setPubDate('2007-08-01');
 // Set the feed last build date
 $rssFeed->setLastBuildDate(date('Y-m-d'));
 // Set the feed webmaster
 $rssFeed->setWebMaster('me@mywebsite.com', 'John Doe');
 // Set the feed managing editor
 $rssFeed->setManagingEditor('me@mywebsite.com', 'John Doe');
 // Set the feed image
 $rssFeed->setImage('http://www.mywebsite.com/image/logo.jpg', 'My Logo', 'My blog', 100, 200);
 // Set the feed categories
 $rssFeed->setCategory('http://technorati.com/posts/tag/php', 'PHP Language');
 $rssFeed->setCategory('http://technorati.com/posts/tag/html', 'HTML Language');
 $rssFeed->setCategory('http://technorati.com/posts/tag/java', 'Java Language');
 $rssFeed->setCategory('http://technorati.com/posts/tag/asp', 'ASP Language');
 // Set the feed copyright
 $rssFeed->setCopyright('(C) Copyright 2007 - MyWebsite - All rights reserved');
 // Set the feed rating
 $rssFeed->setRating('(PICS-1.1 "http://www.classify.org/safesurf/" l r (SS--000 1))');
 // Set the feed generator
 $rssFeed->setGenerator('Powered with RSSFeed Class by Hugo "Emacs" HAMON');
 // Set the feed generator
 $rssFeed->setLanguage('fr');
 // Set the feed docs
 $rssFeed->setDocs('http://fr.wikipedia.org/wiki/RSS_(format)');
 // Set the feed cloud
 $monFlux->setCloud('http://www.oreilly.com', 80, '/RPC2', 'pleaseNotify', 'XML-RPC');
开发者ID:kxopa,项目名称:WebSite-PHP,代码行数:31,代码来源:example2.php


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