溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

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

發(fā)布時間:2021-10-27 10:08:02 來源:億速云 閱讀:130 作者:iii 欄目:編程語言

這篇文章主要講解了“php如何讀取遠(yuǎn)程xml文件并轉(zhuǎn)化為數(shù)組”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“php如何讀取遠(yuǎn)程xml文件并轉(zhuǎn)化為數(shù)組”吧!

php讀取遠(yuǎn)程xml文件并轉(zhuǎn)化為數(shù)組的方法:1、創(chuàng)建一個PHP示例文件;2、通過“simplexml_load_file”取得xml對象;3、循環(huán)把數(shù)據(jù)對象轉(zhuǎn)化為數(shù)組即可。

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

本文操作環(huán)境:Windows7系統(tǒng)、PHP7.1版、DELL G3電腦

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

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

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

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

public function index()
    {
        $url = "http://api.wycq.521g.com/game/mrt_consume/xyg";
        $contentxml = simplexml_load_file($url);  //取得xml對象,需要轉(zhuǎn)化為數(shù)組
        $ranks = array();
        for($i=0;$i<=9;$i++)
        {
            $temp_player = (array)$contentxml->ranking->player[$i];  //循環(huán)把條排名數(shù)據(jù)對象轉(zhuǎn)化為數(shù)組
            $ranks[$i+1] = $temp_player['@attributes'];    //取出數(shù)組中相應(yīng)的屬性值
        }
        $awards = array();
        for($i=0;$i<=4;$i++)
        {
            $awards[$i] = (array)$contentxml->awards->award[$i];  //循環(huán)把獎勵數(shù)據(jù)對象轉(zhuǎn)化為數(shù)組
        }
        $res_awards = array();
        foreach($awards as $k=>$v)
        {
            $res_awards[$k]["caption"] = $v['@attributes']["caption"];  //進(jìn)一步處理把數(shù)組處理干凈
            $res_awards[$k]["items"] = array();
            foreach((array)$v["items"] as $m =>$n)
            {
                $res_awards[$k]["items"] = $n;
            }
        }
        for($j=0;$j<=4;$j++)
        {
            foreach($res_awards[$j]["items"] as $p=>$q)
            {
                $temp_q = (array)$q;
                $res_awards[$j]["items"][$p] = $temp_q['@attributes'];
            }
        }
        $this->_data["ranks"] = $ranks;
        $this->_data["res_awards"]= $res_awards;
        $this->load->view('hd/wymingrentang/wymingrentang', $this->_data);  //指定view頁輸出數(shù)據(jù)
    }

感謝各位的閱讀,以上就是“php如何讀取遠(yuǎn)程xml文件并轉(zhuǎn)化為數(shù)組”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對php如何讀取遠(yuǎn)程xml文件并轉(zhuǎn)化為數(shù)組這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI