I am building a webservice using REST. When client sends a request, server sends the response back as an XML string which looks like this.
<?xml version="1.0" encoding="utf-8"?>
<xml>
<item>
<user>1</user>
<name>cym</name>
<house_number>23423423</house_number>
<house_number_addition>sfsfsdf</house_number_addition>
<zipcode>erwer</zipcode>
<city>werwer</city>
<street>ertyu</street>
<state_name>state1</state_name>
<countryName>Albania</countryName>
</item>
</xml>
how can i parse the XML response as a php array like this?
$arr['list']=array(name=>'abc',age=>'23',gender=>'male');
or
$arr=array(name=>'abc',age=>'23',gender=>'male');
if this is not possible then how can i get the value of an attribute. I tried this using simplexml_load_string, but it returns null. this is my code for that
$response= $ex->getResponse();
$xmldat=simplexml_load_string($response);
$i= $xmldat->name;