php RSS 구독 생 성 방법
RSS(간이 정보 집합,집합 내용 이 라 고도 함)는 사이트 내용 을 묘사 하고 동기 화 하 는 형식 이다.RSS 는 다음 과 같은 세 가지 해석 중 하나 일 수 있다.Really Simple Syndication;RDF (Resource Description Framework) Site Summary; Rich Site Summary。그러나 이 세 가지 해석 은 모두 같은 Syndication 기술 을 가리킨다.RSS 는 현재 인터넷 뉴스 채널,블 로그,위 키 에 널리 사용 되 고 있다.RSS 구독 을 사용 하면 정 보 를 더욱 빨리 얻 을 수 있 고 사이트 에서 RSS 출력 을 제공 하여 사용자 가 사이트 내용 의 최신 업 데 이 트 를 얻 을 수 있 습 니 다.인터넷 사용 자 는 클 라 이언 트 가 RSS 를 지원 하 는 취 합 도구 소프트웨어 를 빌려 사이트 콘 텐 츠 페이지 를 열지 않 은 상태 에서 RSS 출력 을 지원 하 는 사이트 콘 텐 츠 를 읽 을 수 있다.
기술적 으로 RSS 파일 은 규범 화 된 XML 데이터 입 니 다.이 파일 은 보통 rss,xml 또는 rdf 를 접미사 로 하고 다음은 rss 파일 의 내용 예제 입 니 다.
<rss version="2.0">
<channel>
<title> </title>
<link>https://www.jb51.net/</link>
<description> </description>
<item>
<title>RSS Tutorial</title>
<link> /rss</link>
<description>New RSS tutorial on W3School</description>
</item>
<item>
<title>XML Tutorial</title>
<link> /xml</link>
<description>New XML tutorial on W3School</description>
</item>
</channel>
</rss>
php 를 사용 하여 RSS 를 동적 으로 생 성 하 는 코드 예 시 를 공유 합 니 다.
/**
** php RSS
**/
define("TIME_ZONE","");
define("FEEDCREATOR_VERSION","www.jb51.net");//
class FeedItem extends HtmlDescribable{
var $title,$description,$link;
var $author,$authorEmail,$image,$category,$comments,$guid,$source,$creator;
var $date;
var $additionalElements=Array();
}
class FeedImage extends HtmlDescribable{
var $title,$url,$link;
var $width,$height,$description;
}
class HtmlDescribable{
var $descriptionHtmlSyndicated;
var $descriptionTruncSize;
function getDescription(){
$descriptionField=new FeedHtmlField($this->description);
$descriptionField->syndicateHtml=$this->descriptionHtmlSyndicated;
$descriptionField->truncSize=$this->descriptionTruncSize;
return $descriptionField->output();
}
}
class FeedHtmlField{
var $rawFieldContent;
var $truncSize,$syndicateHtml;
function FeedHtmlField($parFieldContent){
if($parFieldContent){
$this->rawFieldContent=$parFieldContent;
}
}
function output(){
if(!$this->rawFieldContent){
$result="";
} elseif($this->syndicateHtml){
$result="<![CDATA[".$this->rawFieldContent."]]>";
}else{
if($this->truncSize and is_int($this->truncSize)){
$result=FeedCreator::iTrunc(htmlspecialchars($this->rawFieldContent),$this->truncSize);
}else{
$result=htmlspecialchars($this->rawFieldContent);
}
}
return $result;
}
}
class UniversalFeedCreator extends FeedCreator{
var $_feed;
function _setFormat($format){
switch (strtoupper($format)){
case "2.0":
// fall through
case "RSS2.0":
$this->_feed=new RSSCreator20();
break;
case "0.91":
// fall through
case "RSS0.91":
$this->_feed=new RSSCreator091();
break;
default:
$this->_feed=new RSSCreator091();
break;
}
$vars=get_object_vars($this);
foreach ($vars as $key => $value){
// prevent overwriting of properties "contentType","encoding"; do not copy "_feed" itself
if(!in_array($key, array("_feed","contentType","encoding"))){
$this->_feed->{$key}=$this->{$key};
}
}
}
function createFeed($format="RSS0.91"){
$this->_setFormat($format);
return $this->_feed->createFeed();
}
function saveFeed($format="RSS0.91",$filename="",$displayContents=true){
$this->_setFormat($format);
$this->_feed->saveFeed($filename,$displayContents);
}
function useCached($format="RSS0.91",$filename="",$timeout=3600){
$this->_setFormat($format);
$this->_feed->useCached($filename,$timeout);
}
}
class FeedCreator extends HtmlDescribable{
var $title,$description,$link;
var $syndicationURL,$image,$language,$copyright,$pubDate,$lastBuildDate,$editor,$editorEmail,$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 "<!-- generator=\"".FEEDCREATOR_VERSION."\" -->
";
}
function _createAdditionalElements($elements,$indentString=""){
$ae="";
if(is_array($elements)){
foreach($elements AS $key => $value){
$ae.= $indentString."<$key>$value</$key>
";
}
}
return $ae;
}
function _createStylesheetReferences(){
$xml="";
if($this->cssStyleSheet) $xml .= "<?xml-stylesheet href=\"".$this->cssStyleSheet."\" type=\"text/css\"?>
";
if($this->xslStyleSheet) $xml .= "<?xml-stylesheet href=\"".$this->xslStyleSheet."\" type=\"text/xsl\"?>
";
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 "<br /><b>Error creating feed file, please check write permissions.</b><br />";
}
}
}
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="<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>
";
$feed.= $this->_createGeneratorComment();
if($this->cssStyleSheet==""){
$cssStyleSheet="http://www.w3.org/2000/08/w3c-synd/style.css";
}
$feed.= $this->_createStylesheetReferences();
$feed.= "<rdf:RDF
";
$feed.= " xmlns=\"http://purl.org/rss/1.0/\"
";
$feed.= " xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"
";
$feed.= " xmlns:slash=\"http://purl.org/rss/1.0/modules/slash/\"
";
$feed.= " xmlns:dc=\"http://purl.org/dc/elements/1.1/\">
";
$feed.= " <channel rdf:about=\"".$this->syndicationURL."\">
";
$feed.= " <title>".htmlspecialchars($this->title)."</title>
";
$feed.= " <description>".htmlspecialchars($this->description)."</description>
";
$feed.= " <link>".$this->link."</link>
";
if($this->image!=null){
$feed.= " <image rdf:resource=\"".$this->image->url."\" />
";
}
$now=new FeedDate();
$feed.= " <dc:date>".htmlspecialchars($now->iso8601())."</dc:date>
";
$feed.= " <items>
";
$feed.= " <rdf:Seq>
";
for ($i=0;$i<count($this->items);$i++){
$feed.= " <rdf:li rdf:resource=\"".htmlspecialchars($this->items[$i]->link)."\"/>
";
}
$feed.= " </rdf:Seq>
";
$feed.= " </items>
";
$feed.= " </channel>
";
if($this->image!=null){
$feed.= " <image rdf:about=\"".$this->image->url."\">
";
$feed.= " <title>".$this->image->title."</title>
";
$feed.= " <link>".$this->image->link."</link>
";
$feed.= " <url>".$this->image->url."</url>
";
$feed.= " </image>
";
}
$feed.= $this->_createAdditionalElements($this->additionalElements," ");
for ($i=0;$i<count($this->items);$i++){
$feed.= " <item rdf:about=\"".htmlspecialchars($this->items[$i]->link)."\">
";
//$feed.= " <dc:type>Posting</dc:type>
";
$feed.= " <dc:format>text/html</dc:format>
";
if($this->items[$i]->date!=null){
$itemDate=new FeedDate($this->items[$i]->date);
$feed.= " <dc:date>".htmlspecialchars($itemDate->iso8601())."</dc:date>
";
}
if($this->items[$i]->source!=""){
$feed.= " <dc:source>".htmlspecialchars($this->items[$i]->source)."</dc:source>
";
}
if($this->items[$i]->author!=""){
$feed.= " <dc:creator>".htmlspecialchars($this->items[$i]->author)."</dc:creator>
";
}
$feed.= " <title>".htmlspecialchars(strip_tags(strtr($this->items[$i]->title,"
\r"," ")))."</title>
";
$feed.= " <link>".htmlspecialchars($this->items[$i]->link)."</link>
";
$feed.= " <description>".htmlspecialchars($this->items[$i]->description)."</description>
";
$feed.= $this->_createAdditionalElements($this->items[$i]->additionalElements," ");
$feed.= " </item>
";
}
$feed.= "</rdf:RDF>
";
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="<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>
";
$feed.= $this->_createGeneratorComment();
$feed.= $this->_createStylesheetReferences();
$feed.= "<rss version=\"".$this->RSSVersion."\">
";
$feed.= " <channel>
";
$feed.= " <title>".FeedCreator::iTrunc(htmlspecialchars($this->title),100)."</title>
";
$this->descriptionTruncSize=500;
$feed.= " <description>".$this->getDescription()."</description>
";
$feed.= " <link>".$this->link."</link>
";
$now=new FeedDate();
$feed.= " <lastBuildDate>".htmlspecialchars($now->rfc822())."</lastBuildDate>
";
$feed.= " <generator>".FEEDCREATOR_VERSION."</generator>
";
if($this->image!=null){
$feed.= " <image>
";
$feed.= " <url>".$this->image->url."</url>
";
$feed.= " <title>".FeedCreator::iTrunc(htmlspecialchars($this->image->title),100)."</title>
";
$feed.= " <link>".$this->image->link."</link>
";
if($this->image->width!=""){
$feed.= " <width>".$this->image->width."</width>
";
}
if($this->image->height!=""){
$feed.= " <height>".$this->image->height."</height>
";
}
if($this->image->description!=""){
$feed.= " <description>".$this->image->getDescription()."</description>
";
}
$feed.= " </image>
";
}
if($this->language!=""){
$feed.= " <language>".$this->language."</language>
";
}
if($this->copyright!=""){
$feed.= " <copyright>".FeedCreator::iTrunc(htmlspecialchars($this->copyright),100)."</copyright>
";
}
if($this->editor!=""){
$feed.= " <managingEditor>".FeedCreator::iTrunc(htmlspecialchars($this->editor),100)."</managingEditor>
";
}
if($this->webmaster!=""){
$feed.= " <webMaster>".FeedCreator::iTrunc(htmlspecialchars($this->webmaster),100)."</webMaster>
";
}
if($this->pubDate!=""){
$pubDate=new FeedDate($this->pubDate);
$feed.= " <pubDate>".htmlspecialchars($pubDate->rfc822())."</pubDate>
";
}
if($this->category!=""){
$feed.= " <category>".htmlspecialchars($this->category)."</category>
";
}
if($this->docs!=""){
$feed.= " <docs>".FeedCreator::iTrunc(htmlspecialchars($this->docs),500)."</docs>
";
}
if($this->ttl!=""){
$feed.= " <ttl>".htmlspecialchars($this->ttl)."</ttl>
";
}
if($this->rating!=""){
$feed.= " <rating>".FeedCreator::iTrunc(htmlspecialchars($this->rating),500)."</rating>
";
}
if($this->skipHours!=""){
$feed.= " <skipHours>".htmlspecialchars($this->skipHours)."</skipHours>
";
}
if($this->skipDays!=""){
$feed.= " <skipDays>".htmlspecialchars($this->skipDays)."</skipDays>
";
}
$feed.= $this->_createAdditionalElements($this->additionalElements," ");
for ($i=0;$i<count($this->items);$i++){
$feed.= " <item>
";
$feed.= " <title>".FeedCreator::iTrunc(htmlspecialchars(strip_tags($this->items[$i]->title)),100)."</title>
";
$feed.= " <link>".htmlspecialchars($this->items[$i]->link)."</link>
";
$feed.= " <description>".$this->items[$i]->getDescription()."</description>
";
if($this->items[$i]->author!=""){
$feed.= " <author>".htmlspecialchars($this->items[$i]->author)."</author>
";
}
/*
// on hold
if($this->items[$i]->source!=""){
$feed.= " <source>".htmlspecialchars($this->items[$i]->source)."</source>
";
}
*/
if($this->items[$i]->category!=""){
$feed.= " <category>".htmlspecialchars($this->items[$i]->category)."</category>
";
}
if($this->items[$i]->comments!=""){
$feed.= " <comments>".htmlspecialchars($this->items[$i]->comments)."</comments>
";
}
if($this->items[$i]->date!=""){
$itemDate=new FeedDate($this->items[$i]->date);
$feed.= " <pubDate>".htmlspecialchars($itemDate->rfc822())."</pubDate>
";
}
if($this->items[$i]->guid!=""){
$feed.= " <guid>".htmlspecialchars($this->items[$i]->guid)."</guid>
";
}
$feed.= $this->_createAdditionalElements($this->items[$i]->additionalElements," ");
$feed.= " </item>
";
}
$feed.= " </channel>
";
$feed.= "</rss>
";
return $feed;
}
}
class RSSCreator20 extends RSSCreator091{
function RSSCreator20(){
parent::_setRSSVersion("2.0");
}
}
사용 예시:
header('Content-Type:text/html; charset=utf-8');
$db=mysql_connect('127.0.0.1','root','123456');
mysql_query("set names utf8");
mysql_select_db('dbname',$db);
$brs=mysql_query('select * from article order by add_time desc limit 0,10',$db);
$rss=new UniversalFeedCreator();
$rss->title=" ";
$rss->link=" http://";
$rss->description="rss ";
while($rowbrs=mysql_fetch_array($brs)){
$item=new FeedItem();
$item->title =$rowbrs['subject'];
$item->link='https://www.jb51.net/';
$item->description =$rowbrs['description'];
$rss->addItem($item);
}
mysql_close($db);
$rss->saveFeed("RSS2.0","rss.xml");
본 논문 에서 말 한 것 이 여러분 의 phop 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Laravel - 변환된 유효성 검사 규칙으로 API 요청 제공동적 콘텐츠를 위해 API를 통해 Laravel CMS에 연결하는 모바일 앱(또는 웹사이트) 구축을 고려하십시오. 이제 앱은 CMS에서 번역된 콘텐츠를 받을 것으로 예상되는 다국어 앱이 될 수 있습니다. 일반적으로 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.