我在codeigniter中使用RESTful服务,
(http://net.tutsplus.com/tutorials/php/working-with-restful-services-in-codeigniter-2/)
但我不知道如何返回空数组。
我试过了,
$this->response([], 200); // it return nothing
和
$this->response([[]], 200); // it return [[]]
我想仅返回 [] ,
有人知道怎么做吗?
答案 0 :(得分:1)
你去:
$this->response(array(), 200);
答案 1 :(得分:0)
简单地回复:
$newarr = array();
$this->response($newarr, 200);
答案 2 :(得分:0)
不完全,但我可以解决,
$this->response(array('result' => array());
它返回,
result:[]