我正在尝试从JSON字符串创建一个xml。任何人都可以帮我解决这个问题。请在这里找到我的json。
{"Customer_CreateOnlyResponse":{"Customer_CreateOnlyResult":{"RequestID":"1212","Message":"Successfully created customer","Success":"true","CustomerID":"1212"}}}
感谢您提前帮助。
答案 0 :(得分:0)
首先,您可以使用json_decode将字符串解码为数组,并使用Xml Core library将此数组转换为XML:
示例:
$data = array(
'post' => array(
'id' => 1,
'title' => 'Best post',
'body' => ' ... '
)
);
$xml = Xml::build($data);