エラーが発生しました
Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity
同じサーバーに 2 つの php ファイルがあり、xml を生成する php から http 応答を受信したいと考えています。
update.php
<?php
$url = '[pathtofile]response.php';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
/* Get the HTML or whatever is linked in $url. */
$response = curl_exec($ch);
$xml = simplexml_load_file($response);
curl_close($ch);
?>
およびresponse.php
<?php
header("Content-type: text/xml");
echo "<?xml version='1.0' encoding='ISO-8859-1'?>";
echo "<note>";
echo "<from>Jani</from>";
echo "<to>Tove</to>";
echo "<message>Remember me this weekend</message>";
echo "</note>";
?>
エラーの原因は何ですか?