我正在使用zend框架工作2.尝试此代码时:
$where = new \Zend\Db\Sql\Where();
$where->nest();
foreach ($Array as $value)
{
$count++;
if ($value == 'dump')
{
$where = $this->function ( $where );
}
if ($count < count ( $Array ))
{
$where->and;
}
}
$where->unnest();
我收到了一条错误消息,表示“未嵌套”。什么可能是错的?!
非常感谢提前。