本文整理汇总了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;
}