php生成XML

WBOY
풀어 주다: 2016-06-23 14:35:18
원래의
806명이 탐색했습니다.

php生成XML
function list_news($id){
          global $db;
          global $newsinfo;
          $sql="SELECT * FROM {$this->tablename}";
          if($id){
         
          $sql.=" WHERE news_news_id=".$id;
         
          }
          $re=$db->query($sql);
          while($r=$db->fetch_array($re)){
          
           $newsinfo[]=array(
             'news_news_id'    =>$r['news_news_id'],
          
              'news_news_name'      =>$r['news_news_name'],
              'news_category_id'     =>$r['news_category_id'],
              'news_tag_name'      =>$r['news_tag_name'],
              'news_content_info'     =>$r['news_content_info'],
              'news_news_author'     =>$r['news_news_author'],
              'news_is_adit'      =>$r['news_is_adit'],
              'news_is_cancle'     =>$r['news_is_cancle'],
              'news_pub_time'     =>$r['news_pub_time'],
              'news_is_recommand'     =>$r['news_is_recommand'],
              'news_is_hot'      =>$r['news_is_hot'],
              'news_is_settop'      =>$r['news_is_settop'],
              'news_keyword_info'      =>$r['news_keyword_info'],
              'news_title_color'      =>$r['news_title_color'],
              'news_introduction_info'     =>$r['news_introduction_info'],
              'news_hit_count'     =>$r['news_hit_count'],
              'news_xml_path'      =>$r['news_xml_path'],
              'news_source_info'      =>$r['news_source_info']
             
             
           );
          }
         }

function arraytoxml($iarr){
    if (is_array($iarr)) {
     foreach ($iarr as $key =>$v) {
      $xmlstr .=''.$v.''.$key.'>'."\n";
     
     }
    }else{
     return '';
    }
    return $xmlstr;
}
 $news->tablename=$tab['news_news_info'];
 $news->list_news();
 $xml2[]=""."\n";
 $xml2[]=""."\n";
 $xml2[]="";
 foreach($newsinfo as $a=>$b){
  $xml2[]="";
 
  $xml2[]=$news->arraytoxml($b);
 
  $xml2[]="
";
 
 }
 
 $xml2[]="
";
 $f=fopen("/listnewsxml/list_total.xml","w");
 fwrite($f,join("",$xml2));
 fclose($f);
 unset($newsinfo);
?>


该文章转载自网络大本营:http://www.xrss.cn/Dev/PHP/2007121018093.Html

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿