コードは次のとおりです。
$doc = new DomDocument('1.0');
// create root node
$root = $doc->createElement('root');
$root = $doc->appendChild($root);
$signed_values = array('a' => 'eee', 'b' => 'sd', 'c' => 'df');
// process one row at a time
foreach ($signed_values as $key => $val) {
// add node for each row
$occ = $doc->createElement('error');
$occ = $root->appendChild($occ);
// add a child node for each field
foreach ($signed_values as $fieldname => $fieldvalue) {
$child = $doc->createElement($fieldname);
$child = $occ->appendChild($child);
$value = $doc->createTextNode($fieldvalue);
$value = $child->appendChild($value);
}
}
// get completed xml document
$xml_string = $doc->saveXML() ;
echo $xml_string;
ブラウザで印刷すると、次のような素敵なXML構造が得られません。
<xml> \n tab <child> etc.
私はちょうど得る
<xml><child>ee</child></xml>
そして、私はutf-8になりたいですこれをどのように行うことができますか?
これを試すことができます:
...
// get completed xml document
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;
$xml_string = $doc->saveXML();
echo $xml_string;
DOMDocument
を作成した直後にこれらのパラメーターを設定することもできます。
$doc = new DomDocument('1.0');
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;
それはおそらくもっと簡潔です。両方の場合の出力は( Demo ):
<?xml version="1.0"?>
<root>
<error>
<a>eee</a>
<b>sd</b>
<c>df</c>
</error>
<error>
<a>eee</a>
<b>sd</b>
<c>df</c>
</error>
<error>
<a>eee</a>
<b>sd</b>
<c>df</c>
</error>
</root>
DOMDocument
を使用してインデント文字を変更する方法を知りません。行ごとの正規表現ベースの置換(たとえば、 preg_replace
)でXMLを後処理できます。
$xml_string = preg_replace('/(?:^|\G) /um', "\t", $xml_string);
または、 tidy_repair_string
の付いたきちんとした拡張子 があり、XMLデータもきれいに出力できます。インデントレベルを指定することは可能ですが、tidyはタブを出力しません。
tidy_repair_string($xml_string, ['input-xml'=> 1, 'indent' => 1, 'wrap' => 0]);
SimpleXmlオブジェクトを使用すると、簡単に
$domxml = new DOMDocument('1.0');
$domxml->preserveWhiteSpace = false;
$domxml->formatOutput = true;
/* @var $xml SimpleXMLElement */
$domxml->loadXML($xml->asXML());
$domxml->save($newfile);
$xml
はsimplexmlオブジェクトです
したがって、simpleXmlは$newfile
で指定された新しいファイルとして保存できます。
<?php
$xml = $argv[1];
$dom = new DOMDocument();
// Initial block (must before load xml string)
$dom->preserveWhiteSpace = false;
$dom->formatOutput = true;
// End initial block
$dom->loadXML($xml);
$out = $dom->saveXML();
print_R($out);
ここで2つの異なる問題:
formatOutput および preserveWhiteSpace 属性をTRUE
に設定して、フォーマットされたXMLを生成します。
$doc->formatOutput = TRUE;
$doc->preserveWhiteSpace = TRUE;
多くのWebブラウザー(つまり、Internet ExplorerおよびFirefox)は、XMLを表示するときにフォーマットします。ソースの表示機能または通常のテキストエディタを使用して、出力を調べます。
xmlEncoding および encoding も参照してください。
// ##### IN SUMMARY #####
$xmlFilepath = 'test.xml';
echoFormattedXML($xmlFilepath);
/*
* echo xml in source format
*/
function echoFormattedXML($xmlFilepath) {
header('Content-Type: text/xml'); // to show source, not execute the xml
echo formatXML($xmlFilepath); // format the xml to make it readable
} // echoFormattedXML
/*
* format xml so it can be easily read but will use more disk space
*/
function formatXML($xmlFilepath) {
$loadxml = simplexml_load_file($xmlFilepath);
$dom = new DOMDocument('1.0');
$dom->preserveWhiteSpace = false;
$dom->formatOutput = true;
$dom->loadXML($loadxml->asXML());
$formatxml = new SimpleXMLElement($dom->saveXML());
//$formatxml->saveXML("testF.xml"); // save as file
return $formatxml->saveXML();
} // formatXML
すべての回答を試みましたが、どれも機能しませんでした。たぶん、XMLを保存する前に子を追加および削除しているからでしょう。多くのグーグルが見つかった後 このコメント phpドキュメントで。結果のXMLをリロードするだけで機能しました。
$outXML = $xml->saveXML();
$xml = new DOMDocument();
$xml->preserveWhiteSpace = false;
$xml->formatOutput = true;
$xml->loadXML($outXML);
$outXML = $xml->saveXML();
これは上記のテーマのわずかなバリエーションですが、他の人がこれをヒットし、私がやったようにそれを理解できない場合に備えて、ここに置いています。
SaveXML()を使用する場合、ターゲットDOMdocumentのpreserveWhiteSpaceはインポートされたノードに適用されません(PHP 5.6のように)。
次のコードを検討してください。
$dom = new DOMDocument(); //create a document
$dom->preserveWhiteSpace = false; //disable whitespace preservation
$dom->formatOutput = true; //pretty print output
$documentElement = $dom->createElement("Entry"); //create a node
$dom->appendChild ($documentElement); //append it
$message = new DOMDocument(); //create another document
$message->loadXML($messageXMLtext); //populate the new document from XML text
$node=$dom->importNode($message->documentElement,true); //import the new document content to a new node in the original document
$documentElement->appendChild($node); //append the new node to the document Element
$dom->saveXML($dom->documentElement); //print the original document
このコンテキストでは、$dom->saveXML();
ステートメントは$ messageからインポートされたコンテンツをきれいに印刷しませんが、元々$ domにあったコンテンツはきれいに印刷されます。
$ domドキュメント全体をきれいに印刷するために、次の行:
$message->preserveWhiteSpace = false;
$message = new DOMDocument();
行の後に含める必要があります-つまり。ノードのインポート元のドキュメントも、preserveWhiteSpace = falseである必要があります。