最初の方法:
// // //本のタイトルを作成します //本のisbn要素を作成します //本の要素を作成します // //文字列変数に XML 構造を作成します //XML 文字列を出力 ?>
$response = $dom->createElement('response');
$dom->appendChild($response);
$books = $dom->createElement('books');
$response->appendChild($books);
$title = $dom->createElement('title');
$titleText = $dom->createTextNode('PHP と AJAX');
$title->appendChild ($ titleText);
$isbn = $dom->createElement('isbn');
$isbnText = $dom->createTextNode('1-21258986');
$isbn->appendChild( $isbnText);
$book = $dom->createElement('book');
$book->appendChild($title);
$book->appendChild($isbn);
$books->appendChild($book);
$xmlString = $dom->saveXML();
echo $xmlString;