`
coolsooner
  • 浏览: 1310878 次
文章分类
社区版块
存档分类
最新评论

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.

  1. <? xml version = "1.0" ?>
  2. < config >
  3. < modules >
  4. < MyNamespace_MyModule >
  5. < version > 0.1.0 </ version >
  6. </ MyNamespace_MyModule >
  7. </ modules >
  8. < frontend >
  9. < routers >
  10. < mymodule >
  11. < use > standard </ use >
  12. < args >
  13. < module > MyNamespace_MyModule </ module >
  14. < frontName > mymodule </ frontName >
  15. </ args >
  16. </ mymodule >
  17. </ routers >
  18. < layout >
  19. < updates >
  20. < mymodule >
  21. < file > mymodule.xml </ file >
  22. </ mymodule >
  23. </ updates >
  24. </ layout >
  25. </ frontend >
  26. </ 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.
  1. $xmlPath =Mage::getBaseDir().DS. 'test.xml' ;
  2. $xmlObj = new Varien_Simplexml_Config( $xmlPath );
  3. $xmlData = $xmlObj ->getNode();
  4. 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’.
  1. $xmlPath =Mage::getBaseDir().DS. 'test.xml' ;
  2. $xmlObj = new Varien_Simplexml_Config( $xmlPath );
  3. $xmlObj ->setNode( 'modules/mukesh' , 'chapagain' );
  4. $xmlData = $xmlObj ->getNode()->asNiceXml();
  5. //checkiftheXMLfileiswritableandthensavedata
  6. if ( is_writable ( $xmlPath )){
  7. @file_put_contents ( $xmlPath , $xmlData );
  8. }


Hope this helps. Thanks for reading.

From Mukesh Chapagain's Blog, post Magento: Read Write XML

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics