XML Extra content at the end of the document

后端 未结 2 659
深忆病人
深忆病人 2020-12-12 06:09

I\'m getting this error:

error on line 4 at column 1: Extra content at the end of the document

with this code:

    $this-&g         


        
2条回答
  •  执念已碎
    2020-12-12 06:42

    After spending about 3 days on this very same problem, I have come to find the best and easiest way to get past this may be affffding the folling headers to the code:

    header("Content-type: text/xml");
            header( 'Content-Disposition: attachment; filename='.$_SESSION['WorkTable'].'_contacts-'.$date.'.xml');
    

    Add this to your code between this lines:

    $query = $query->result_array();
    //add it here <--
    header("Content-type: text/xml");
    

提交回复
热议问题