如何在面向对象的php

时间:2018-06-08 23:45:13

标签: php

嘿,我正在尝试使用面向对象的PHP构建 JSON restful API。 我的问题是如何在此方案中发送JSON响应

这是我的代码

if($post->update()) {
  echo 
    array('message' => 'Post updated')
} else {
  echo
    array('message' => 'Post not updated')
}

1 个答案:

答案 0 :(得分:0)

你需要将你的数组包装在json_encode

if($post->update()) {
  echo json_encode(
    array('message' => 'Post updated')
  );
} else {
  echo json_decode(
    array('message' => 'Post not updated')
  );
}