Suppose I have the following data in XML format

PHP Code: 
<?xml version="1.0"?>
<api>
  <query>
    <allusers>
      <u name="Y" />
      <u name="Y (usurped)" />
      <u name="Y 12345 ut" />
      <u name="Y 19" />
      <u name="Y 1praneeth" />
      <u name="Y 20" />
      <u name="Y 2112 Y" />
      <u name="Y 4 yellow" />
      <u name="Y A D A carlos alberto" />
      <u name="Y A N K O" />
    </allusers>
  </query>
  <query-continue>
    <allusers aufrom="Y Angora" />
  </query-continue>
</api>
How to interpret them into php?
Snell Reviewed by Snell on . XML data to PHP ? Suppose I have the following data in XML format <?xml version="1.0"?> <api> <query> <allusers> <u name="Y" /> <u name="Y (usurped)" /> <u name="Y 12345 ut" /> Rating: 5