嘿,我正在尝试使用面向对象的PHP构建 JSON
restful API。
我的问题是如何在此方案中发送JSON
响应
这是我的代码
if($post->update()) {
echo
array('message' => 'Post updated')
} else {
echo
array('message' => 'Post not updated')
}
答案 0 :(得分:0)
你需要将你的数组包装在json_encode
中if($post->update()) {
echo json_encode(
array('message' => 'Post updated')
);
} else {
echo json_decode(
array('message' => 'Post not updated')
);
}