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