本文整理匯總了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));
}
}
示例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;
}
示例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));
}
示例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;
}
示例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);
}