Home > Backend Development > PHP Tutorial > PHP读取数据库中记录生成XML时,记录中有中文怎么处理

PHP读取数据库中记录生成XML时,记录中有中文怎么处理

WBOY
Release: 2016-06-13 11:27:59
Original
851 people have browsed it

PHP读取数据库中记录生成XML时,记录中有中文怎么办
我希望用PHP的DOM函数生成XML文档,如果文档中有中文就出错,即使用CDATA包含中文也没用,代码如下:
 require('conn.php');
$owen1='学生工作';
header('Content-type:text/xml');
$result=$conn->query("select * from news where BigClassName='$owen1' limit 4");

if ($result)

$dom = new DOMDocument('1.0','UTF-8');
$dom->formatOutput=true;
$rcs = $dom->createElement("rss");

 
while ($row=$result->fetch_assoc()){
//print_r($arr); 
$rc = $dom->createElement("channel");
    $mydate=$dom->createElement("title");
    $myname = $dom->createElement("link");
   
    $mydescription=$dom->createElement("description");
 $myhp=$dom->createElement("item");
 $date=$row['title'];
    $datetext = $dom->createTextNode('');
    $mydate->appendChild($datetext);
    $nametext=$dom->createTextNode($name);
    $myname->appendChild($nametext);
    $hptext=$dom->createTextNode($hp);
    $myhp->appendChild($hptext);
    $descriptiontext=$dom->createTextNode($description);
    $mydescription->appendChild($descriptiontext);
    $rcs->appendChild($rc);
    $rc->appendChild($mydate);
    $rc->appendChild($myname);
    $rc->appendChild($myhp);
    $rc->appendChild($mydescription);


  $dom->appendChild($rcs);
     echo $dom->saveXML();     


执行,就提示在最新动态这遇到不合格式的字符,要怎么改啊

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template