在php中返回json数组

时间:2018-02-18 13:39:25

标签: php arrays slim

我在php中尝试return一个json数组。 这是我尝试但只返回我的第一个变量

return $this->response->withJson(array($todos, $fecha_baja));

我的$todos变量就是这个

$todos = $sth->fetchObject();

和我的$fecha_baja

$rfbaja=$sth1->fetchObject():
$fecha_baja=$rfbaja->fecha_baja;

但是我从回归中获得的唯一信息是来自$todos的信息 有谁知道我return$todos

怎么样$fecha_baja

1 个答案:

答案 0 :(得分:0)

试试这个

return $this->response->withJson(['todos' => $todos, 'fecha' => $fecha_baja]);