magento -- 用Magento的方式读写XML
I will be using Varien_Simplexml_Element class to read write xml nodes. The path to this class file is lib/Varien/Simplexml/Element.php
Here is a sample XML file which I am going to read through Magento code. I will also be adding an XML node to the following XML data.
- <? xml version = "1.0" ?>
- < config >
- < modules >
- < MyNamespace_MyModule >
- < version > 0.1.0 </ version >
- </ MyNamespace_MyModule >
- </ modules >
- < frontend >
- < routers >
- < mymodule >
- < use > standard </ use >
- < args >
- < module > MyNamespace_MyModule </ module >
- < frontName > mymodule </ frontName >
- </ args >
- </ mymodule >
- </ routers >
- < layout >
- < updates >
- < mymodule >
- < file > mymodule.xml </ file >
- </ mymodule >
- </ updates >
- </ layout >
- </ frontend >
- </ config >
Here is the Magento/PHP code to read the XML data. I have kept the XML file in the root directory of Magento installation. The XML file is named test.xml. At first, the XML file is loaded and then it’s node are read with getNode function. Then, I have printed the result.
- $xmlPath =Mage::getBaseDir().DS. 'test.xml' ;
- $xmlObj = new Varien_Simplexml_Config( $xmlPath );
- $xmlData = $xmlObj ->getNode();
- echo "<pre>" ;print_r( $xmlData ); echo "</pre>" ;
You can add node with the setNode function. Here, I have set a node inside the node ‘modules’. The name of my new node is ‘mukesh’ and it’s value is ‘chapagain’.
- $xmlPath =Mage::getBaseDir().DS. 'test.xml' ;
- $xmlObj = new Varien_Simplexml_Config( $xmlPath );
- $xmlObj ->setNode( 'modules/mukesh' , 'chapagain' );
- $xmlData = $xmlObj ->getNode()->asNiceXml();
- //checkiftheXMLfileiswritableandthensavedata
- if ( is_writable ( $xmlPath )){
- @file_put_contents ( $xmlPath , $xmlData );
- }
Hope this helps. Thanks for reading.
From Mukesh Chapagain's Blog, post Magento: Read Write XML
本文介绍了如何使用Magento中的Varien_Simplexml_Element类来读取和写入XML节点,并通过示例展示了加载XML文件、读取节点以及添加新节点的具体实现。
1388

被折叠的 条评论
为什么被折叠?



