使用Zend \ Db \ Sql \ Where嵌套

时间:2014-07-11 15:16:19

标签: php sql zend-framework2

我正在使用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();

我收到了一条错误消息,表示“未嵌套”。什么可能是错的?!

非常感谢提前。

0 个答案:

没有答案