本文整理匯總了PHP中Zend_Db::fetchRow方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Db::fetchRow方法的具體用法?PHP Zend_Db::fetchRow怎麽用?PHP Zend_Db::fetchRow使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend_Db
的用法示例。
在下文中一共展示了Zend_Db::fetchRow方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getDomainId
public function getDomainId($domain)
{
$domainId = false;
$domainRow = $this->_db->fetchRow('SELECT `id` FROM `domains` WHERE `name`=?', $domain);
if (!empty($domainRow)) {
$domainId = $domainRow['id'];
}
return $domainId;
}
示例2: login
/**
* 會員登錄
*
* @param string $username 用戶名
* @param string $password 密碼
*/
public function login($data)
{
$username = $data['username'];
$password = $data['password'];
if (empty($username)) {
throw new Zend_Exception('用戶名或郵箱不能為空');
}
if (empty($password)) {
throw new Zend_Exception('密碼不能為空');
}
$password = md5(md5($password));
$where = $this->_db->quoteInto('username=? ', strtolower($username));
$select = $this->_db->select()->from('user')->where($where);
$info = $this->_db->fetchRow($select);
if (empty($info)) {
throw new Zend_Exception('用戶名不存在,請查證');
}
if ($password != $info['password']) {
throw new Zend_Exception('用戶名密碼錯誤請查證');
}
$lifeTime = empty($data['lifetime']) ? '3600' : $data['lifetime'];
$userInfo = new YUN_ArrayObject($info);
session_cache_limiter('private');
$this->_login($userInfo);
Zend_Session::rememberMe($lifeTime);
$this->updateLogin($userInfo->uid);
return $info;
}
示例3: getIntroDetail
/**
* Enter description here ...
* @param string $id
* @return array Intro
*/
public function getIntroDetail($id)
{
$row = $this->db->fetchRow("SELECT * FROM intro WHERE id = ? ORDER BY sort DESC", array($id));
return $row;
}