使用方法は次のとおりです。miniXML の使用方法は、ActiveLink-PHP-XML-Package-0.4.0 よりも簡単です。 & $xmlDoc->getRoot();
$childElement =& $xmlRoot->createChild('achild');
$childElement->attribute('name', 'annie'); text('この要素には次のような属性と子があります');
$image =& $childElement->createChild('image');
$image->attribute('location', 'http:// Psychogenic.com/image.png');
$childElement->text('画像と少し');
$orphan =& $xmlDoc->createElement('song'); 'tomorrow, Tomorrow');
$childElement->appendChild($orphan);
子要素を追加するには 2 つの方法があります。 createChild、2 番目のメソッドは、最初に xmlDoc を使用して createElement を実行し、次にノードが appendChild にあります。最終的な出力結果は次のようになります。
" Eyes="#0000FF" Hair="#FF0000">
この要素には、次のような属性と子があります
imageそして少し
データを保存する単純な XML ファイルの場合はさらに簡単であることがわかります。詳細については、miniXML が提供する例を参照してください。
============================ = ===========================================
分析
minixmlファイルの構造は次のとおりです:
minixml.inc.php
------classes
---------------doc.inc.php element.inc.php node.inc.php Treecomp.inc。 php
詳しい API の説明は公式 Web サイト http://minixml.psychogenic.com/api.html で紹介されています。
http://www.bkjia.com/PHPjc/319193.html
www.bkjia.com
true