當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Zend_Db::fetchRow方法代碼示例

本文整理匯總了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;
 }
開發者ID:appsoluut,項目名稱:MiniThor-core,代碼行數:9,代碼來源:PowerDNS.php

示例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;
 }
開發者ID:BGCX261,項目名稱:zhongyycode-svn-to-git,代碼行數:34,代碼來源:Auth.php

示例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;
 }
開發者ID:laiello,項目名稱:vinhloi,代碼行數:10,代碼來源:Intro.php


注:本文中的Zend_Db::fetchRow方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。