本文整理汇总了PHP中RSSFeed::setProtectString方法的典型用法代码示例。如果您正苦于以下问题:PHP RSSFeed::setProtectString方法的具体用法?PHP RSSFeed::setProtectString怎么用?PHP RSSFeed::setProtectString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类RSSFeed
的用法示例。
在下文中一共展示了RSSFeed::setProtectString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: RSSFeed
* @link http://www.website-php.com
* @copyright WebSite-PHP.com 12/05/2015
* @version 1.2.13
* @access public
* @since 1.2.2
*/
// Import the RSSFeed class
require_once 'path/to/RSSFeed/RSSFeed.class.php';
// MySQL Connection
$connection = mysql_connect('localhost', 'root', 'example');
mysql_select_db('website', $connection);
try {
// Create the new instance of the RSS Feed
$rssFeed = new RSSFeed('utf-8');
// Activate the string protection
$rssFeed->setProtectString(true);
// Set the feed title
$rssFeed->setTitle('My blog : the best in the world');
// 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