我在通过HTTP加载文档时遇到问题。我收到的错误如下所示
警告:DOMDocument::load(http://external/document.xml): failed to open stream: HTTP request failed! HTTP/1.1 500 Internal Server Error
该文档可以在浏览器中和使用wget加载。问题在于,在我的系统(OS X和Linux)上,DOMDocument::load()没有发送任何User-Agent标头,由于某种奇怪的原因,这使得Microsoft-IIS/6.0返回500错误。
解决方案可以在https://php.net/manual/en/function.libxml-set-streams-context.php 找到
<?php
$opts = array(
'http' => array(
'user_agent' => 'PHP libxml agent',
)
);
$context = stream_context_create($opts);
libxml_set_streams_context($context);
// 通过HTTP请求文件
$doc = DOMDocument::load('http://www.example.com/file.xml');
?>