rss20.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. header("Content-type: application/xml");
  7. echo"<?xml version=\"1.0\" encoding=\"$pagecode\"?>\n";
  8. ?>
  9. <rss version="2.0">
  10. <channel>
  11. <title><?=$pagetitle?></title>
  12. <link><?=$pageurl?></link>
  13. <description>Latest <?=$public_r['rssnum']?> infos of <?=$pagetitle?></description>
  14. <copyright>Copyright(C) Empire CMS</copyright>
  15. <generator>Empire CMS by Empire Studio.</generator>
  16. <lastBuildDate><?=gmdate('r',time())?></lastBuildDate>
  17. <ttl>60</ttl>
  18. <image>
  19. <url><?=$public_r['newsurl']?>e/data/images/rss.gif</url>
  20. <title><?=$public_r['sitename']?></title>
  21. <link><?=$public_r['newsurl']?></link>
  22. </image>
  23. <?
  24. $field="";
  25. while($r=$empire->fetch($sql))
  26. {
  27. if(empty($field))
  28. {
  29. $field=ReturnTheIntroField($r);
  30. }
  31. //简介
  32. $smalltext=RepSpeRssStr(sub(strip_tags($r[$field]),0,$sublen,false));
  33. //标题链接
  34. $titleurl=RepSpeRssStr(sys_ReturnBqTitleLink($r));
  35. if(!stristr($titleurl,'://'))
  36. {
  37. $titleurl=$sitedomain.$titleurl;
  38. }
  39. $cname=RepSpeRssStr($class_r[$r[classid]]['classname']);
  40. $newstime=gmdate('r',$r['newstime']);
  41. ?>
  42. <item>
  43. <title><![CDATA[<?=RepSpeRssStr($r['title'])?>]]></title>
  44. <description><![CDATA[ <?=$smalltext?> ]]></description>
  45. <link><?=$titleurl?></link>
  46. <guid><?=$titleurl?></guid>
  47. <category><?=$cname?></category>
  48. <author><![CDATA[<?=RepSpeRssStr($r['writer'])?>]]></author>
  49. <pubDate><?=$newstime?></pubDate>
  50. </item>
  51. <?
  52. }
  53. ?>
  54. </channel>
  55. </rss>