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


PHP RSS::setProperty方法代码示例

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


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

示例1: RSS

<?php

/**
 * @file demo-rss.php
 * RSS feed demo
 */
// Include the files
include 'classes/Feed.class.php';
include 'classes/RSS.class.php';
include 'classes/Atom.class.php';
// Set up a the Feed object
$myrss = new RSS('An RSS Feed', 'http://example.com/', 'Description of this feed.');
$feeditems = array(array('title' => 'Example item', 'link' => 'http://example.com/news/foo', 'guid' => 'http://example.com/news/2011/09/17/foo', 'description' => 'Description goes here.', 'pubDate' => date(DateTime::RSS, strtotime('17-09-2011 21:30')), 'category' => 'Tech'), array('title' => 'Another example item', 'link' => 'http://example.com/blog/bar', 'description' => 'Description goes here.', 'pubDate' => date(DateTime::RSS, strtotime('12-08-2011 12:53')), 'guid' => Feed::generateTag('http://example.com/blog/bar', '12-08-2011 12:53'), 'managingEditor' => 'ankerman@example.com (Henk Ankerman)'));
// Add some feed items
$myrss->addItems($feeditems);
// Add some properties
$myrss->setProperty('language', 'en-us');
$myrss->setProperty('generator', 'PHP');
$myrss->setProperty('link', 'http://bernson.eu/testfeed/demo-rss.php');
// We're using text/plain here to make sure you can read the raw output
$myrss->setContentType('text/plain');
// Fetch the result into a variable
$output = $myrss->fetch();
echo $output;
开发者ID:royk,项目名称:php-feed,代码行数:24,代码来源:demo-rss.php


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