이 글에서 공유한 내용은 xml의 PHP 원격 읽기에 관한 것입니다. 특정 참조 값이 있습니다. 필요한 친구가 참조할 수 있습니다.
$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 중국어 웹사이트의 기타 관련 기사를 참조하세요!