首頁  >  問答  >  主體

xml - php domdocument 使用一個url來讀取文件應該怎麼讀

因為專案需要,我需要使用php來修改xml上的值。使用的DOMdocument來做。
程式碼如下

      $xmlpatch ='http://www.*****.com/vr/wtest/vtour/tour.xml';
        $xml = simplexml_load_file($url);
        $doc = new DOMDocument();   
        $doc -> formatOutput = true;  
        if($doc -> load($xmlpatch)) {   
        $root = $doc -> documentElement;   
        $elm = $root -> getElementsByTagName('scene');   
        $hotspot = $elm[1] ->getElementsByTagName('hotspot');
        $hotspot[0] ->setAttribute('videourl',$videourl1);
        $hotspot[1] ->setAttribute('onclick',$videourl2);
    
    
        $doc->save($xmlpatch);
        } 

程式碼應該是沒問題的,問題出在我原來$xmlpatch寫的是相對路徑,因為用的在本地用的環境包,所以沒問題。
但是伺服器上的環境php檔案和xml是跨網域放的,所以我換成了絕對路徑。但是發現腳本失效了。上網有人建議使用simplexml來做。但是我實驗一下確實能唸出來,但我沒在w3cschool上找到修改屬性的函數。
求各位大神幫幫忙~不勝感激~能告訴我simplexml怎麼修改屬性,或是domdocument怎麼用url來讀都好。

伊谢尔伦伊谢尔伦2736 天前536

全部回覆(1)我來回復

  • 迷茫

    迷茫2017-05-16 13:14:41

    先用 curl 讀取 xml 檔案的訊息,再用 DOMdocument 或 simplexml 處理。

    <?php
    
    $url = 'http://www.abc.com/sitemap.xml';
    
    $header = array(
        'User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:45.0) Gecko/20100101 Firefox/45.0',
        'Accept-Language: zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3',
        'Accept-Encoding: gzip, deflate',
    );
    
    $curl = curl_init();
    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
    curl_setopt($curl, CURLOPT_ENCODING, 'gzip');
    curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
    $data = curl_exec($curl);
    curl_close($curl);
    
    if ($xml = simplexml_load_string($data)) {
        $xml->row->name = 'new_name'; // Edit XML Object node
        echo $xml->asXML();
    }

    回覆
    0
  • 取消回覆