怎么可能不支持呢...http://www.chinaz.com/rss.php
看一下这个地址你就知道了.

解决方案 »

  1.   

    <?$doc = new DOMDocument('1.0','gb2312');$doc->formatOutput = true;$root = $doc->createElement('book');
    $root = $doc->appendChild($root);$title = $doc->createElement('title');
    $title = $root->appendChild($title);$text = $doc->createTextNode('你好');
    $text = $title->appendChild($text);
    $doc->save("x.xml");
    ?> 
      

  2.   

    楼上的"php匪徒",我刚才运行了你的代码,提示错误如下:
    Warning: DOMDocument::save() [function.DOMDocument-save]: output conversion failed due to conv error, bytes 0xC4 0xE3 0xBA 0xC3 in F:\php\postxml.php on line 15
      

  3.   

    PHP梦之队,难道你测试下面代码也不报错吗?$doc = new DOMDocument('1.0','gb2312'); 
    $doc->formatOutput = true; 
    $root = $doc->createElement('book'); 
    $root = $doc->appendChild($root); 
    $title = $doc->createElement('title'); 
    $title = $root->appendChild($title); 
    $text = $doc->createTextNode('你好'); 
    $text = $title->appendChild($text); 
    $doc->save("x.xml");