Showing posts with label parse xml in php. Show all posts
Showing posts with label parse xml in php. Show all posts

Wednesday, December 7, 2011

Convert xml string into an array using php

<?php

   $string = <<<XML
   <?xml version='1.0'?>
   <document>
   <title>Forty What?</title> 
   <from>Joe</from>
   <to>Jane</to>
   <body>
   I know that's the answer -- but what's the question?
   </body>
   </document>
   XML;

   $xml = simplexml_load_string($string);

   print_r($xml);

?>

Output:

SimpleXMLElement Object ( [title] => Forty What? [from] => Joe [to] => Jane [body] => I know that's the answer -- but what's the question? )