我有这个功能,我需要回显一个 XML,但它不起作用。问题是什么?
static function login_xml($ERROR_ID,$SESSION_ID)
{
echo "<BR>IN LOGINXML<BR>";
echo '<xml version="1.0">'.
'<response>log_in</response><parameters><error>'.$ERROR_ID.'</error><session>'
.$SESSION_ID.'</session></parameters></xml>';
}
我尝试使用 header('Content-type: text/xml'); 在回声之前,这也不起作用。我能做些什么?