首頁  >  文章  >  後端開發  >  php 遠端讀取xml

php 遠端讀取xml

不言
不言原創
2018-04-14 16:54:541752瀏覽

這篇文章給大家分享的內容是關於php 遠端讀取xml ,有著一定的參考價值,有需要的朋友可以參考一下

$fp=fsockopen("xxx.xxx.com", 80, $errno, $errstr, 30);
 if($fp){
  $out = "GET /abc.xml?key=value HTTP/1.1\r\n";   
     $out .= "Host: xxx.xxx.com\r\n";   
     $out.= 'User_Agent: XML-RPC Client\r\n';
     $out.='Content-Type: text/xml\r\n';
     $out .= "Connection: Close\r\n\r\n";     
     
      fwrite($fp,$out);
  while(!@feof($fp)){
         $result.=@fgets($fp,1024);
       }
       fclose($fp);   
 }
 echo $result;

相關推薦:

# #Php讀取資料的基本操作

以上是php 遠端讀取xml的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn