Cakephp 2.4.5,从Controller输出部分json_encode

时间:2014-07-12 19:21:17

标签: php json cakephp cakephp-2.4

我不知道为什么,我在另一个共享主机和我的开发人员上有一个类似的脚本,这很好用:

public function admin_delete_entry() {

    $this->checkKey();

    $this->autoRender = false;

    if ($this->request->is('post')) {
        $this->Pronostic->id = $this->request->data('id');
        $res = $this->Pronostic->delete();
        if ($res) {
            $data = array('status' => 'success');
        } else {
            $data = array('status' => 'error');
        }

        echo json_encode($data);
    }
}

输出结果为:

{"status"

我不知道为什么输出会在此时被截断...有什么想法吗?

0 个答案:

没有答案