Méthode | Description | |
---|---|---|
__construct ( string $charset = 'UTF-8' ) | 创建Feed对象 | |
addItem ( array $item ) : unknown |
$item的格式为
array (
'title' => 'xxx',
'content' => 'xxx',
'excerpt' => 'xxx',
'date' => 'xxx',
'link' => 'xxx',
'author' => 'xxx',
'comments' => 'xxx',
)
|
|
generate ( ) : string | 输出字符串 | |
setBaseUrl ( string $baseUrl ) : void | 设置主页 | |
setFeedUrl ( string $feedUrl ) : void | 设置聚合地址 | |
setSubTitle ( string $subTitle ) : void | 设置副标题 | |
setTitle ( string $title ) : void | 设置标题 |
Méthode | Description | |
---|---|---|
encode ( mixed $str ) : string | 去掉一些特殊字符 |
public __construct ( string $charset = 'UTF-8' ) | ||
$charset | string |
array (
'title' => 'xxx',
'content' => 'xxx',
'excerpt' => 'xxx',
'date' => 'xxx',
'link' => 'xxx',
'author' => 'xxx',
'comments' => 'xxx',
)
public setBaseUrl ( string $baseUrl ) : void | ||
$baseUrl | string | 主页地址 |
Résultat | void |
public setFeedUrl ( string $feedUrl ) : void | ||
$feedUrl | string | 聚合地址 |
Résultat | void |
public setSubTitle ( string $subTitle ) : void | ||
$subTitle | string | 副标题 |
Résultat | void |