2012-10-18 83 views
0

原諒我的術語,我是一個新手在web開發中。如何命名一個RESTLER json結果

要想象我的問題,請參閱下文。

這是怎麼RESTLER顯示JSON:

[ 
{ 
    "id": 1, 
    "name": "Daniel Craig", 
    "email": "[email protected]" 
}, 
{ 
    "id": 2, 
    "name": "Tom Cruise", 
    "email": "[email protected]" 
} 
] 

這是我怎麼想RESTLER顯示JSON結果:

{"actors":[ 
{ 
    "id": 1, 
    "name": "Daniel Craig", 
    "email": "[email protected]" 
}, 
{ 
    "id": 2, 
    "name": "Tom Cruise", 
    "email": "[email protected]" 
} 
]} 

回答

0

只是包裝與你的結果另一個陣列。如果我們假設$result返回上面的第一個結果,請執行以下操作:

$result = array(
array(
    "id" => 1, 
    "name" => "Daniel Craig", 
    "email" => "[email protected]" 
), 
array(
    "id" => 2, 
    "name" => "Tom Cruise", 
    "email" => "[email protected]" 
) 
); 

return array('actors'=>$result);