如何在cakephp中将Json转换为xml或Array转换为xml

时间:2013-12-11 07:24:31

标签: xml json cakephp-2.0

我正在尝试从JSON字符串创建一个xml。任何人都可以帮我解决这个问题。请在这里找到我的json。

 {"Customer_CreateOnlyResponse":{"Customer_CreateOnlyResult":{"RequestID":"1212","Message":"Successfully created customer","Success":"true","CustomerID":"1212"}}}

感谢您提前帮助。

1 个答案:

答案 0 :(得分:0)

首先,您可以使用json_decode将字符串解码为数组,并使用Xml Core library将此数组转换为XML:

示例:

$data = array(
    'post' => array(
        'id' => 1,
        'title' => 'Best post',
        'body' => ' ... '
    )
);
$xml = Xml::build($data);