This article describes how to generate RSS subscriptions in php. Share it with everyone for your reference. The specific analysis is as follows:
RSS (Really Simple Syndication, also called syndication) is a format for describing and synchronizing website content. RSS can be one of the following three interpretations: Really Simple Syndication; RDF (Resource Description Framework) Site Summary; Rich Site Summary. But in fact, these three explanations all refer to the same Syndication technology. RSS is currently widely used in online news channels, blogs and wikis. Using RSS subscriptions can obtain information faster. The website provides RSS output, which is helpful for users to obtain the latest updates of website content. Network users can use aggregation tool software that supports RSS on the client to read website content that supports RSS output without opening the website content page.
Technically speaking, an RSS file is a piece of standardized XML data. The file generally has rss, xml or rdf as the suffix. The following is an example of the content of an rss file:
The code is as follows:
The following is a code example that uses php to dynamically generate RSS:
The code is as follows:
$webmaster,$category,$docs,$ttl,$rating,$skipHours,$skipDays;
var $xslStyleSheet="";
var $items=Array();
var $contentType="application/xml";
var $encoding="utf-8";
var $additionalElements=Array();
function addItem($item){
$this->items[]=$item;
}
function clearItem2Null(){
$this->items=array();
}
function iTrunc($string,$length){
if(strlen($string)<=$length){
return $string;
}
$pos=strrpos($string,".");
if($pos>=$length-4){
$string=substr($string,0,$length-4);
$pos=strrpos($string,".");
}
if($pos>=$length*0.4){
return substr($string,0,$pos+1)." ...";
}
$pos=strrpos($string," ");
if($pos>=$length-4){
$string=substr($string,0,$length-4);
$pos=strrpos($string," ");
}
if($pos>=$length*0.4){
return substr($string,0,$pos)." ...";
}
return substr($string,0,$length-4)." ...";
}
function _createGeneratorComment(){
return "n";
}
function _createAdditionalElements($elements,$indentString=""){
$ae="";
if(is_array($elements)){
foreach($elements AS $key => $value){
$ae.= $indentString."<$key>$value$key>n";
}
}
return $ae;
}
function _createStylesheetReferences(){
$xml="";
if($this->cssStyleSheet) $xml .= "cssStyleSheet."" type="text/css"?>n";
if($this->xslStyleSheet) $xml .= "xslStyleSheet."" type="text/xsl"?>n";
return $xml;
}
function createFeed(){}
function _generateFilename(){
$fileInfo=pathinfo($_SERVER["PHP_SELF"]);
return substr($fileInfo["basename"],0,-(strlen($fileInfo["extension"])+1)).".xml";
}
function _redirect($filename){
Header("Content-Type: ".$this->contentType."; charset=".$this->encoding."; filename=".basename($filename));
Header("Content-Disposition: inline; filename=".basename($filename));
readfile($filename,"r");
die();
}
function useCached($filename="",$timeout=3600){
$this->_timeout=$timeout;
if($filename==""){
$filename=$this->_generateFilename();
}
if(file_exists($filename) && (time()-filemtime($filename) < $timeout)){
$this->_redirect($filename);
}
}
function saveFeed($filename="",$displayContents=true){
if($filename==""){
$filename=$this->_generateFilename();
}
$feedFile=fopen($filename,"w+");
if($feedFile){
fputs($feedFile,$this->createFeed());
fclose($feedFile);
if($displayContents){
$this->_redirect($filename);
}
}else{
echo "
Error creating feed file, please check write permissions.
";
}
}
}
class FeedDate{
var $unix;
function FeedDate($dateString=""){
if($dateString=="") $dateString=date("r");
if(is_integer($dateString)){
$this->unix=$dateString;
return;
}
if(preg_match("~(?:(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun),\s+)?(\d{1,2})\s+([a-zA-Z]{3})\s+(\d{4})\s+(\d{2}):(\d{2}):(\d{2})\s+(.*)~",$dateString,$matches)){
$months=Array("Jan"=>1,"Feb"=>2,"Mar"=>3,"Apr"=>4,"May"=>5,"Jun"=>6,"Jul"=>7,"Aug"=>8,
"Sep"=>9,"Oct"=>10,"Nov"=>11,"Dec"=>12);
$this->unix=mktime($matches[4],$matches[5],$matches[6],$months[$matches[2]],$matches[1],$matches[3]);
if(substr($matches[7],0,1)=='+' OR substr($matches[7],0,1)=='-'){
$tzOffset=(substr($matches[7],0,3) * 60 + substr($matches[7],-2)) * 60;
}else{
if(strlen($matches[7])==1){
$oneHour=3600;
$ord=ord($matches[7]);
if($ord < ord("M")){
$tzOffset=(ord("A") - $ord - 1) * $oneHour;
} elseif($ord >= ord("M") && $matches[7]!="Z"){
$tzOffset=($ord - ord("M")) * $oneHour;
} elseif($matches[7]=="Z"){
$tzOffset=0;
}
}
switch ($matches[7]){
case "UT":
case "GMT": $tzOffset=0;
}
}
$this->unix += $tzOffset;
return;
}
if(preg_match("~(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})(.*)~",$dateString,$matches)){
$this->unix=mktime($matches[4],$matches[5],$matches[6],$matches[2],$matches[3],$matches[1]);
if(substr($matches[7],0,1)=='+' OR substr($matches[7],0,1)=='-'){
$tzOffset=(substr($matches[7],0,3) * 60 + substr($matches[7],-2)) * 60;
}else{
if($matches[7]=="Z"){
$tzOffset=0;
}
}
$this->unix += $tzOffset;
return;
}
$this->unix=0;
}
function rfc822(){
$date=gmdate("Y-m-d H:i:s",$this->unix);
if(TIME_ZONE!="") $date .= " ".str_replace(":","",TIME_ZONE);
return $date;
}
function iso8601(){
$date=gmdate("Y-m-d H:i:s",$this->unix);
$date=substr($date,0,22) . ':' . substr($date,-2);
if(TIME_ZONE!="") $date=str_replace("+00:00",TIME_ZONE,$date);
return $date;
}
function unix(){
return $this->unix;
}
}
class RSSCreator10 extends FeedCreator{
function createFeed(){
$feed="encoding.""?>n";
$feed.= $this->_createGeneratorComment();
if($this->cssStyleSheet==""){
$cssStyleSheet="http://www.w3.org/2000/08/w3c-synd/style.css";
}
$feed.= $this->_createStylesheetReferences();
$feed.= "
$feed.= " xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"n";
$feed.= " xmlns:slash="http://purl.org/rss/1.0/modules/slash/"n";
$feed.= " xmlns:dc="http://purl.org/dc/elements/1.1/">n";
$feed.= "
$feed.= "
$feed.= "
$feed.= " ".$this->link."n";
if($this->image!=null){
$feed.= "
}
$now=new FeedDate();
$feed.= "
$feed.= "
$feed.= "
for ($i=0;$i
$feed.= "
}
$feed.= "
$feed.= "
$feed.= "
if($this->image!=null){
$feed.= "
$feed.= "
$feed.= " ".$this->image->link."n";
$feed.= "
$feed.= "
}
$feed.= $this->_createAdditionalElements($this->additionalElements," ");
for ($i=0;$i
$feed.= "
//$feed.= "
$feed.= "
if($this->items[$i]->date!=null){
$itemDate=new FeedDate($this->items[$i]->date);
$feed.= "
}
if($this->items[$i]->source!=""){
$feed.= "
}
if($this->items[$i]->author!=""){
$feed.= "
}
$feed.= "
$feed.= " ".htmlspecialchars($this->items[$i]->link)."n";
$feed.= "
$feed.= $this->_createAdditionalElements($this->items[$i]->additionalElements," ");
$feed.= "
}
$feed.= "n";
return $feed;
}
}
class RSSCreator091 extends FeedCreator{
var $RSSVersion;
function RSSCreator091(){
$this->_setRSSVersion("0.91");
$this->contentType="application/rss+xml";
}
function _setRSSVersion($version){
$this->RSSVersion=$version;
}
function createFeed(){
$feed="encoding.""?>n";
$feed.= $this->_createGeneratorComment();
$feed.= $this->_createStylesheetReferences();
$feed.= "
$feed.= "
$feed.= "
$this->descriptionTruncSize=500;
$feed.= "
$feed.= " ".$this->link."n";
$now=new FeedDate();
$feed.= "
$feed.= "
if($this->image!=null){
$feed.= "
$feed.= "
$feed.= "
$feed.= " ".$this->image->link."n";
if($this->image->width!=""){
$feed.= "
}
if($this->image->height!=""){
$feed.= "
}
if($this->image->description!=""){
$feed.= "
}
$feed.= "
}
if($this->language!=""){
$feed.= "
}
if($this->copyright!=""){
$feed.= "
}
if($this->editor!=""){
$feed.= "
}
if($this->webmaster!=""){
$feed.= "
}
if($this->pubDate!=""){
$pubDate=new FeedDate($this->pubDate);
$feed.= "
}
if($this->category!=""){
$feed.= "
}
if($this->docs!=""){
$feed.= "
}
if($this->ttl!=""){
$feed.= "
}
if($this->rating!=""){
$feed.= "
}
if($this->skipHours!=""){
$feed.= "
}
if($this->skipDays!=""){
$feed.= "
}
$feed.= $this->_createAdditionalElements($this->additionalElements," ");
for ($i=0;$i
$feed.= "
$feed.= "
$feed.= " ".htmlspecialchars($this->items[$i]->link)."n";
$feed.= "
if($this->items[$i]->author!=""){
$feed.= "
}
/*
// on hold
if($this->items[$i]->source!=""){
$feed.= " n";
}
*/
if($this->items[$i]->category!=""){
$feed.= "
}
if($this->items[$i]->comments!=""){
$feed.= "
}
if($this->items[$i]->date!=""){
$itemDate=new FeedDate($this->items[$i]->date);
$feed.= "
}
if($this->items[$i]->guid!=""){
$feed.= "
}
$feed.= $this->_createAdditionalElements($this->items[$i]->additionalElements," ");
$feed.= "
}
$feed.= "
$feed.= "
return $feed;
}
}
class RSSCreator20 extends RSSCreator091{
function RSSCreator20(){
parent::_setRSSVersion("2.0");
}
}
使用示例:
代码如下:
希望本文所述对大家的php程序设计有所帮助。