本文主要是介绍magento -- 用Magento的方式读写XML,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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();
- // check if the XML file is writable and then save data
- 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 -- 用Magento的方式读写XML的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!