关于chrome的文档末尾的额外内容

时间:2013-09-12 14:12:18

标签: php mysql xml

http://seosailor.com/beta2/articles/showrss此网址在Chrome文档末尾提供错误额外内容

我的代码就是这个

function showrss() {
    header("Content-Type: application/xml; charset=ISO-8859-1");
     $query_items = "select * from articles";   
    $result_items  = mysql_query ($query_items) or die("Some error: ".mysql_error());                             
    $xml = '<?xml version="1.0" encoding="ISO-8859-1" ?><rss version="2.0"><channel>';
    while($row = mysql_fetch_array($result_items))
        { 
            //$des = mysql_real_escape_string($row['a_description']);
        //  $a_des = str_replace(']]>', ']]&gt;',$row['a_description']);
            //$a_des = strip_tags($row['a_description']);
        //  $a_des = preg_replace('/[^a-zA-Z0-9\s]/', '', strip_tags($row['a_description']));
            $a_des = htmlspecialchars($row['a_description']);
        $xml .= '<item>
         <title>'.$row["a_title"].'</title>
         <link>'.$row["a_url"].'</link>
         <description>'.$a_des.'</description></item>';
        }   $xml .= '</channel>';
             $xml .= '</rss></xml>';
            echo $xml;}

1 个答案:

答案 0 :(得分:1)

这是因为末尾有额外的</xml>结束标记(没有开放<xml>标记)。