Home  >  Article  >  Backend Development  >  php remote reading xml

php remote reading xml

不言
不言Original
2018-04-14 16:54:541683browse

The content shared with you in this article is about php remote reading xml, which has certain reference value. Friends in need can refer to it

$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;

Related recommendations:

Basic operations for reading data in Php

The above is the detailed content of php remote reading xml. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn