douyu0852 2014-10-24 03:24
浏览 38
已采纳

PHP输出不以xml格式打印

i have the following code.

$stmt = $conn->prepare('SELECT sponsor_path FROM sponsors WHERE conference_id = ?');
$stmt->execute(array($cid));

$sponsorsImg = $stmt->fetchall (PDO::FETCH_OBJ);

$xml_output = "<?xml version=\"1.0\" ?>";
$xml_output .= "<sponsors>";
foreach ($sponsorsImg as $spImg){
    $xml_output .= "<sponsor>
";
    $xml_output .= "<image>".$spImg->sponsor_path."</image>
";
    $xml_output .= "</sponsor>
";
}
$xml_output .= "</sponsors>";

echo $xml_output;

Instead of printing the results in xml format i get only the $spImg->sponsor_path's content in plain text. Any ideas?

  • 写回答

1条回答 默认 最新

  • dongluo8439 2014-10-24 03:29
    关注

    Most browsers will render markup that looks like XML. So it might be the case that the XML that you want is actually produced but not displayed correctly on the browser.

    Try the following:

    Set the content type before outputting:

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

    If the output looks the same, then right click on the page and select view source. You should see your XML markup as intended there.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部