I have xml response like this
I want to change to response json like this
{
"data": {
"tanggal": "20191015",
"jam": "103346",
"BeneficiaryAccount": "12340097034787"
}
}
I have xml response like this
I want to change to response json like this
{
"data": {
"tanggal": "20191015",
"jam": "103346",
"BeneficiaryAccount": "12340097034787"
}
}
To convert XML data to JSON:
$xml_data = @simplexml_load_string($xml_string);
$json_data = json_encode($xml_data);
$array = json_decode($json_data, TRUE);
This would work.