if (define('_class_rss_php')) が戻る;
define('_class_rss_php教程',1);
/**
* 使用说明:
* $rss = 新しい rss('redfox','http://jb51.net/',"redfox のブログ");
* $rss->additem('rss class',"http://www.jb51.net","xxx",date());
* $rss->additem(...);
* $rss->savetofile(...);
*/
クラス RSS {
//パブリック
$rss_ver = "2.0";
$channel_title = '';
$channel_link = '';
$channel_description = '';
$言語 = 'zh_cn';
$copyright = '';
$ウェブマスター = '';
$pubdate = '';
$lastbuilddate = '';
$generator = 'redfox RSS ジェネレーター';
$content = '';
$items = 配列();
関数 rss($title, $link, $description) {
$this->channel_title = $title;
$this->channel_link = $link;
$this->channel_description = $description;
$this->pubdate = date('y-m-d h:i:s',time());
$this->lastbuilddate = date('y-m-d h:i:s',time());
}
関数 additem($title, $link, $description ,$pubdate) {
$this->items[] = array('title' => $title ,
'リンク' => $リンク、
'説明' => $説明、
'pubdate' => $pubdate);
}
関数 buildrss() {
$s = " ";
// チャンネルを開始します
$s .= " ";
$s .= " "
$s .= "
{$this->channel_link} ";
$s .= "{$this->channel_description} ";
$s .= "{$this->言語} ";
if (!emptyempty($this->著作権)) {
$s .= "{$this->著作権} ";
}
if (!emptyempty($this->ウェブマスター)) {
$s .= "{$this->ウェブマスター} ";
}
if (!emptyempty($this->pubdate)) {
$s .= "{$this->pubdate} ";
}
if (!emptyempty($this->lastbuilddate)) {
$s .= "{$this->lastbuilddate} ";
}
if (!emptyempty($this->generator)) {
$s .= "{$this->ジェネレーター} ";
}
// アイテムを開始します
for ($i=0;$iitems),$i++) {
$s .= " ";
$s .= " ";
$s .= "
{$this->items[$i]['link']} ";
$s .= "items[$i]['description']}]]> ";
$s .= "{$this->items[$i]['pubdate']} ";
$s .= " ";
}
// チャンネルを閉じる
$s .= " ";
$this->content = $s;
}
関数 show() {
if (emptyempty($this->content)) $this->buildrss();
header('コンテンツタイプ:テキスト/xml');
echo($this->content);
}
関数 savetofile($fname) {
if (emptyempty($this->content)) $this->buildrss();
$handle = fopen($fname, 'wb');
if ($handle === false) false を返します。
fwrite($handle, $this->content);
fclose($handle);
}
}
?>
http://www.bkjia.com/PHPjc/922888.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/922888.html技術記事 PHP 生成 RSS 文件例 PHP RSS 生成例 代償如下: 代償如下: ?php if (define('_class_rss_php')) return; define('_class_rss_php教程',1); /** * 使用说明: *...