FormatAction.class.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /**
  3. *
  4. * FormatAction.class.php (格式化输出)
  5. *
  6. */
  7. if(!defined("Ainaphp")) exit("Access Denied");
  8. class FormatAction extends BaseAction
  9. {
  10. function _initialize()
  11. {
  12. parent::_initialize();
  13. import("@.ORG.Cxml");
  14. }
  15. public function index()
  16. {
  17. }
  18. public function rss()
  19. {
  20. $modle = M('Article');
  21. $data = $modle->field('id,title,url,createtime,copyfrom,content')->where("status=1")->order('id desc')->limit('0,10')->select();
  22. $arraya['title']['value']=$this->Config['site_name'];
  23. $arraya['link']['value']=$this->Config['site_url'];
  24. $arraya['description']['value']=$this->Config['seo_title'];
  25. $arraya['generator']['value']='Ainaphp'.VERSION;
  26. $arraya['lastBuildDate']['value']= gmdate('D, d M Y H:i:s \G\M\T',time()+ 3600 * 8);
  27. $arraya['webMaster']['value']= $this->Config['site_email'];
  28. $arraya['language']['value']= 'zh-cn';
  29. foreach($data as $key=> $res){
  30. //$arraya[$key]['NodeName']['attributes']=array('id'=>'3','class'=>'thue');
  31. $arraya[$key]['NodeName']['value'] ='item';
  32. $arraya[$key]['title']['value'] = $res['title'];
  33. $arraya[$key]['link']['value'] = $this->Config['site_url'].$res['url'];
  34. $arraya[$key]['description']['value'] = $res['content'];
  35. $arraya[$key]['description']['ishtml']=1;
  36. $arraya[$key]['pubDate']['value'] = gmdate('D, d M Y H:i:s \G\M\T',$res['createtime']+ 3600 * 8);
  37. $arraya[$key]['author']['value'] = $res['copyfrom'] ? $res['copyfrom'] : 'Ainaphp' ;
  38. }
  39. $array['channel'] =$arraya;
  40. $Cxml = new Cxml();
  41. $Cxml->root='rss';
  42. $Cxml->root_attributes=array('version'=>'2.0');
  43. $xmldata = $Cxml->Cxml($array);
  44. echo $xmldata;
  45. }
  46. public function flashxml(){
  47. $Cxml = new Cxml();
  48. $Cxml->root='rss';
  49. $Cxml->root_attributes=array('version'=>'2.0');
  50. $Cxml->NodeName= 'item';
  51. $xmldata = $Cxml->Cxml($array,'./rss.xml'); //生成xml
  52. }
  53. }
  54. ?>