php 加载外部实体失败
php failed to load external entity
这是我的代码,我正在使用 CI,我收到错误 I/O 警告:加载外部实体失败 "note.xhtml"?
index.php
<?php
$xml=simplexml_load_file("note.xhtml") or die("Error: Cannot create object");
print_r($xml);
?>
note.xhtml
<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
我已经复制了你的代码并且它有效。但是我看到您的 index.php 在 "views" 文件夹中并且您有一些 htaccess 文件,所以可能定义了一些重写并且它与工作目录混淆了一些东西。尝试使用绝对路径。如果它没有帮助并且你在 linux 然后检查 note.xhtml 权限。
<?php
$xml=simplexml_load_file(__DIR__."/note.xhtml") or die("Error: Cannot create object");
print_r($xml);
?>
您的网络服务器配置似乎有问题。
检查您的网络服务器是否允许从外部资源获取内容。
这是我的代码,我正在使用 CI,我收到错误 I/O 警告:加载外部实体失败 "note.xhtml"?
index.php
<?php
$xml=simplexml_load_file("note.xhtml") or die("Error: Cannot create object");
print_r($xml);
?>
note.xhtml
<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
我已经复制了你的代码并且它有效。但是我看到您的 index.php 在 "views" 文件夹中并且您有一些 htaccess 文件,所以可能定义了一些重写并且它与工作目录混淆了一些东西。尝试使用绝对路径。如果它没有帮助并且你在 linux 然后检查 note.xhtml 权限。
<?php
$xml=simplexml_load_file(__DIR__."/note.xhtml") or die("Error: Cannot create object");
print_r($xml);
?>
您的网络服务器配置似乎有问题。 检查您的网络服务器是否允许从外部资源获取内容。