本文介紹了更新而不觸及時間戳(Laravel)的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
是否可以在不觸及時間戳的情況下更新用戶?
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.
這篇關于更新而不觸及時間戳(Laravel)的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!
【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!