我正在尝试通过查询在我的发布表上应用order然后应用json编码,它在json编码之前工作正常。甚至在json编码窗口后,但在实时服务器上json编码不起作用,任何人都可以指导我在哪里做错了。 代码在下面
public function articles($offset = null) {
$order=array('Publication.id' =>'DESC');
$total2 = $this->Publication->find('all', array('limit' => 10, 'offset' => $offset * 10, 'order' => $order));
echo json_encode($total2); die();
}