我正在使用 Codeigniter REST API,并且我有这样的响应代码
$this->response(array('error' => 'Items could not be found'),403);
它在本地机器上正常工作,但在服务器上我得到这样的输出
{"error":"Items could not be foun
最后几个字符丢失
实际输出应该是这样的
{"error":"Items could not be found"}
我正在使用 Codeigniter REST API,并且我有这样的响应代码
$this->response(array('error' => 'Items could not be found'),403);
它在本地机器上正常工作,但在服务器上我得到这样的输出
{"error":"Items could not be foun
最后几个字符丢失
实际输出应该是这样的
{"error":"Items could not be found"}