Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Laravel 4 的模型中的函数中放置了一个断点。
我看到$this既有attributes又有original。
$this
两者似乎都包含相同的数据,即表示表中字段的键/值对。
有什么不同?
我的模型中需要一个函数,它将所有字段作为关联数组返回,我应该使用哪一个?
在您更改任何属性之前,它们具有相同的数据:
$user->name = "user391986";
然后你会有
$user->attributes['name'] != $user->original['name'];