【发布时间】:2015-01-28 19:06:37
【问题描述】:
这是我的代码,我正在使用 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>
【问题讨论】:
标签: php codeigniter xhtml