久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

PHP讀取遠(yuǎn)程xml文件并轉(zhuǎn)化為數(shù)組

 看見就非常 2015-04-01

    遠(yuǎn)程文件如下:http://api.wycq./game/mrt_consume/xyg ,,打開是一個xml文件,內(nèi)容是一個游戲的充值排名和不同名次獎勵信息,,需要取出前十名的信息和獎勵信息用于展示,

    實現(xiàn)代碼如下:

  1. public function index()  
  2.     {  
  3.         $url = "http://api.wycq./game/mrt_consume/xyg";  
  4.         $contentxml = simplexml_load_file($url);  //取得xml對象,,需要轉(zhuǎn)化為數(shù)組  
  5.         $ranks = array();  
  6.         for($i=0;$i<=9;$i++)  
  7.         {  
  8.             $temp_player = (array)$contentxml->ranking->player[$i];  //循環(huán)把條排名數(shù)據(jù)對象轉(zhuǎn)化為數(shù)組  
  9.             $ranks[$i+1] = $temp_player['@attributes'];    //取出數(shù)組中相應(yīng)的屬性值  
  10.         }  
  11.         $awards = array();  
  12.         for($i=0;$i<=4;$i++)  
  13.         {  
  14.             $awards[$i] = (array)$contentxml->awards->award[$i];  //循環(huán)把獎勵數(shù)據(jù)對象轉(zhuǎn)化為數(shù)組  
  15.         }  
  16.         $res_awards = array();  
  17.         foreach($awards as $k=>$v)  
  18.         {  
  19.             $res_awards[$k]["caption"] = $v['@attributes']["caption"];  //進(jìn)一步處理把數(shù)組處理干凈  
  20.             $res_awards[$k]["items"] = array();  
  21.             foreach((array)$v["items"] as $m =>$n)  
  22.             {  
  23.                 $res_awards[$k]["items"] = $n;  
  24.             }  
  25.         }  
  26.         for($j=0;$j<=4;$j++)  
  27.         {  
  28.             foreach($res_awards[$j]["items"] as $p=>$q)  
  29.             {  
  30.                 $temp_q = (array)$q;  
  31.                 $res_awards[$j]["items"][$p] = $temp_q['@attributes'];  
  32.             }  
  33.         }  
  34.         $this->_data["ranks"] = $ranks;  
  35.         $this->_data["res_awards"]= $res_awards;  
  36.         $this->load->view('hd/wymingrentang/wymingrentang', $this->_data);  //指定view頁輸出數(shù)據(jù)  
  37.     }  


    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點,。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多