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


PHP CModel::update方法代碼示例

本文整理匯總了PHP中CModel::update方法的典型用法代碼示例。如果您正苦於以下問題:PHP CModel::update方法的具體用法?PHP CModel::update怎麽用?PHP CModel::update使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CModel的用法示例。


在下文中一共展示了CModel::update方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: run

 private function run($sql = NULL)
 {
     $_dbName = $this->_dbName;
     $_tableName = $this->_tableName;
     //分庫預留
     if (method_exists($this, 'getRealDbName')) {
         $_dbName = $this->getRealDbName($this);
     }
     //分表預留
     if (method_exists($this, 'getRealTableName')) {
         $_tableName = $this->getRealTableName($this);
     }
     $_DT_ = "`{$_dbName}`.`{$_tableName}`";
     //自動建庫建庫表
     $this->autoCreateDb($_dbName);
     $this->autoCreateTable($_DT_, $this->_fields);
     $aOption = array('select' => $this->_select, 'groupby' => $this->_groupby, 'limit' => $this->_limit, 'orderby' => $this->_orderby);
     //執行方法
     switch ($this->_operator) {
         case 'find':
             $res = parent::find($_DT_, $this->_where, $aOption);
             break;
         case 'findall':
             $res = parent::findAll($_DT_, $this->_where, $aOption);
             break;
         case 'insert':
             $res = parent::insert($_DT_, $this->_data);
             break;
         case 'delete':
             $res = parent::delete($_DT_, $this->_where, $aOption);
             break;
         case 'update':
             $res = parent::update($_DT_, $this->_data, $this->_where, $aOption);
             break;
         case 'execute':
             $res = parent::execute($sql);
             break;
         case 'query':
             $res = parent::query($sql);
             break;
         case 'count':
             $res = parent::count($_DT_, $this->_where, $aOption);
             break;
         case 'mapping':
             $res = parent::find($_DT_, $this->_where, $aOption);
             break;
     }
     return $res;
 }
開發者ID:wlmwang,項目名稱:simple-php-frame,代碼行數:49,代碼來源:CArModel.php


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