更新而不触及时间戳(Laravel)

2021-12-26 00:00:00 php laravel laravel-4 eloquent

是否可以在不触及时间戳的情况下更新用户?

Is it possible to update a user without touching the timestamps?

我不想完全禁用时间戳..

I don't want to disable the timestamps completly..

grz

推荐答案

暂时禁用:

$user = User::find(1);
$user->timestamps = false;
$user->age = 72;
$user->save();

您可以选择在保存后重新启用它们.

You can optionally re-enable them after saving.

这是 Laravel 4 和 5 的唯一功能,不适用于 Laravel 3.

This is a Laravel 4 and 5 only feature and does not apply to Laravel 3.

相关文章