我无法在apache中使用函数libxml_set_external_entity_loader。
这是我的test.php(取自http://php.net/manual/en/function.libxml-set-external-entity-loader.php):
<?php
$xml = <<<XML
<!DOCTYPE foo PUBLIC "-//FOO/BAR" "http://example.com/foobar">
<foo>bar</foo>
XML;
$dtd = <<<DTD
<!ELEMENT foo (#PCDATA)>
DTD;
libxml_disable_entity_loader(false);
libxml_set_external_entity_loader(
function ($public, $system, $context) use($dtd) {
var_dump($public);
var_dump($system);
var_dump($context);
$f = fopen("php://temp", "r+");
fwrite($f, $dtd);
rewind($f);
return $f;
}
);
$dd = new DOMDocument;
$r = $dd->loadXML($xml);
var_dump($dd->validate());
访问此test.php文件时,结果始终在浏览器中失败:
Warning: DOMDocument::validate(http://example.com/foobar): failed to open stream: HTTP request failed! HTTP/1.0 404 Not Found in /www/test.php on line 28
Warning: DOMDocument::validate(): I/O warning : failed to load external entity "http://example.com/foobar" in /www/test.php on line 28
Warning: DOMDocument::validate(): Could not load the external subset "http://example.com/foobar" in /www/test.php on line 28
bool(false)
虽然它适用于终端中的php:
$ php test.php
string(10) "-//FOO/BAR"
string(25) "http://example.com/foobar"
array(4) {
["directory"]=>
NULL
["intSubName"]=>
NULL
["extSubURI"]=>
NULL
["extSubSystem"]=>
NULL
}
bool(true)
httpd和php都是在Mac OS上从源代码构建的。 phpinfo()结果在此处上传https://dl.dropboxusercontent.com/u/11335326/phpinfo().html
有谁可以指出哪个是问题?谢谢!
答案 0 :(得分:0)
使用--enable-mpms-shared=all
重新构建httpd,然后将LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
添加到httpd.conf
中解决此问题。