欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

zend中取得单表一行数据

程序员文章站 2022-04-27 08:21:58
...
跳至
	public function getRow($where)
	{
	    $select = $this->getSelect();
	    $select->where($where);
	    $select->limit(1);
	    $result = $this->selectWith($select);
	    if(count($result)>0) {
	        return $result->current();
	    }
	    return null;
	}