(PHP 5)
DOMDocument::save — 内部の XML ツリーをファイルに出力する
DOM 表現から XML ドキュメントを作成します。この関数は、通常は以下の例のように DOM ドキュメントを新しく作成した後にコールされます。
書き込んだバイト数、あるいはエラーが発生した場合は FALSE を返します。
バージョン | 説明 |
---|---|
5.1.0 | options パラメータが追加されました。 |
例1 DOM ツリーをファイルに保存する
<?php
$doc = new DOMDocument('1.0');
// 出力はきれいに整形したいですね。
$doc->formatOutput = true;
$root = $doc->createElement('book');
$root = $doc->appendChild($root);
$title = $doc->createElement('title');
$title = $root->appendChild($title);
$text = $doc->createTextNode('This is the title');
$text = $title->appendChild($text);
echo 'Wrote: ' . $doc->save("/tmp/test.xml") . ' bytes'; // Wrote: 72 bytes
?>