这是我当前的 XML 文件 (books.xml):
<?xml version="1.0"?>
<books>
<book>
<isbn>123456789098</isbn>
<title>Harry Potter</title>
<author>J K. Rowling</author>
<edition>1</edition>
</book>
</books>
请注意,在这种情况下,版本是从 1 到 99 的数字,并且 ISBN 的长度为 12 位,这与书籍属性的实际概念相反。
我有一个“添加书”表单,我想通过将新书附加到已经存在的 XML 文件来保存从该表单(使用帖子)收集的数据。在 PHP 中,最好的方法是什么?我对如何做到这一点感到困惑,因为我这样做的方式一半一半:要么保存一个空节点,要么什么都不做。
/*************************************
*code snippet of results.php
*************************************/
$doc = new DOMDocument();
$doc->load('books.xml');
$nodes = $doc->getElementsByTagName('books');
if($nodes->length > 0)
{
$b = $doc->createElement( "book" );
$isbn = $doc->createElement( "isbn" );
$isbn->appendChild(
$doc->createTextNode( $book['isbn'] ));
$b->appendChild( $isbn );
$title = $doc->createElement( "title" );
$title->appendChild(
$doc->createTextNode( $book['title'] ));
$b->appendChild( $title );
$author = $doc->createElement( "author" );
$author->appendChild(
$doc->createTextNode( $book['author'] ));
$b->appendChild( $author );
$edition = $doc->createElement( "edition" );
$edition->appendChild(
$doc->createTextNode( $book['edition'] ));
$b->appendChild( $edition );
$doc->appendChild( $b );
}
$doc->save('books.xml');
谢谢您的帮助。