Home  >  Article  >  php教程  >  zend中取得单表一行数据

zend中取得单表一行数据

PHP中文网
PHP中文网Original
2016-05-24 12:53:001120browse

跳至

	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;
	}

                   

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn