php で生成された XML に BOM を追加する方法
php で生成された XML に BOM を追加する方法
出力 XML は flash の呼び出しに使用されるため、BOM のない出力 XML は文字化けして表示されます。 BOM の追加方法のリクエスト:
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> $dom = new DOMDocument("1.0","utf-8"); header("Content-Type: text/html; charset=unicode"); //items $root = $dom->createElement("items"); $dom->appendChild($root); //count $count = $dom->createAttribute("count"); $root->appendChild($count); $count_value = $dom->createTextNode("6"); $count->appendChild($count_value); //item $item = $dom->createElement("item"); $root->appendChild($item); $text = $dom->createTextNode($content); $item->appendChild($text); //id $id = $dom->createAttribute("id"); $item->appendChild($id); $idValue = $dom->createTextNode("156"); $id->appendChild($idValue); //title $title = $dom->createAttribute("title"); $item->appendChild($title); $titleValue = $dom->createTextNode("test"); $title->appendChild($titleValue); $content=$dom->saveXML();