我正在使用此代码获取文件
$url="http://zz.com/a"
$ch = curl_init();
$timeout = 5;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
echo $xml = curl_exec($ch);
它将是一个xml文件,我需要将其显示为xml如果我显示它就像一个字符串我需要将其显示为xml文件
答案 0 :(得分:3)
在echo
之前(和任何其他输出),添加:
header('Content-Type: application/xml');