我已經完成了以下代碼以從URL中提取圖像,但是我收到了XML解析錯誤。如何顯示包含所有XML輸出的圖像?用XML輸出顯示圖像
$error = true;
$msg = 'profile';
header('Content-type: text/xml');
echo '<?xml version="1.0" encoding="UTF-8"?>';
if($error)
{
echo "<response>";
echo "<success>S</success>";
echo "<message>".trim($msg)."</message>";
echo "<userid>".trim($userid)."</userid>";
echo "<username>".trim($username)."</username>";
echo "<firstname>".trim($firstname)."</firstname>";
echo "<lastname>".trim($lastname)."</lastname>";
echo "<email>".trim($email)."</email>";
echo "<follower>".trim($follower)."</follower>";
//echo "<photo><img src=photo/".trim($photo) ." height='200' width='200'></photo>";
echo "</response>";
}
避免形成個XML這樣的。改用API/LIB。 – SparKot 2013-02-12 11:34:51
我不認爲你可以添加一個圖像到XML輸出,你仍然可以提供它的URL,並以其他方式呈現。 – Gntem 2013-02-12 11:35:49
XML中的屬性必須包含在''''或''''中。 – SparKot 2013-02-12 11:36:13