這篇文章給大家分享的內容是關於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 遠端讀取xml的詳細內容。更多資訊請關注PHP中文網其他相關文章!