方法里加入 header('Content-Type:text/xml');浏览器报错

<?php

class Response{

public static function xml(){

   header('Content-Type:text/xml');

$xml = "<?xml version='1.0' encoding='UTF-8'?>\n";

$xml.= "<root>\n";

$xml.= "<code>200</code>\n";

$xml.= "<message>数据返回成功</message>\n";

$xml.= "<data>\n";

$xml.= "<id>123</id>\n";

$xml.= "<name>1</name>\n";

$xml.= "</data>\n";

$xml.= "</root>\n";

echo $xml;

}

}

Response::xml();

?>


weibo_为了胳膊的微博小窝_03566856
浏览 1390回答 1
1回答

阿韩

header函数上面好像不能有内容,放到第一行试试.
打开App,查看更多内容
随时随地看视频慕课网APP