この記事であなたに共有した内容は、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 中国語 Web サイトの他の関連記事を参照してください。