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


PHP Builder::update方法代碼示例

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


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

示例1: restore

 /**
  * Restore the soft-deleted model instances.
  *
  * @return int
  */
 public function restore()
 {
     if ($this->model->isSoftDeleting()) {
         $column = $this->model->getDeletedAtColumn();
         return $this->query->update(array($column => null));
     }
 }
開發者ID:brucewu16899,項目名稱:laravel-admin-panel,代碼行數:12,代碼來源:Builder.php

示例2: update

 /**
  * update data
  *
  * @param array $args update data
  * @return int
  */
 public function update(array $args)
 {
     if ($this->dynamic === false) {
         return $this->query->update($args);
     }
     $result = 0;
     if (count($update = $this->filter($args, $this->schema())) > 0) {
         $result = $this->query->update($update);
     }
     if ($this->proxy === true) {
         $wheres = $this->query->wheres === null ? [] : $this->query->wheres;
         $this->getProxyManager()->update($args, $wheres);
     }
     return $result;
 }
開發者ID:mint-soft-com,項目名稱:xpressengine,代碼行數:21,代碼來源:DynamicQuery.php

示例3: update

 /**
  * Update a record in the database.
  *
  * @param  array  $values
  * @return int
  */
 public function update(array $values)
 {
     return $this->query->update($this->addUpdatedAtColumn($values));
 }
開發者ID:aysenli,項目名稱:laravel-admin-1,代碼行數:10,代碼來源:Builder.php

示例4: update

 /**
  * Update a record in the database.
  *
  * @param  array $values
  *
  * @return int
  */
 public function update(array $values)
 {
     $result = parent::update($values);
     $this->handler->setBuilder($this)->setValues($values)->setSqlOperation('update')->invalidateQuery('update');
     return $result;
 }
開發者ID:spiritix,項目名稱:lada-cache,代碼行數:13,代碼來源:QueryBuilder.php

示例5: update

 public function update(array $values)
 {
     if ($this->needFlushCache()) {
         // 清空表級緩存
         $meta = $this->getMeta();
         $meta->flush($this->db(), $this->model->table());
         $this->flushAffectingRowCache();
     }
     return parent::update($values);
 }
開發者ID:angejia,項目名稱:pea,代碼行數:10,代碼來源:QueryBuilder.php


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