gpt4 book ai didi

php - 在 Cakephp 3 上只更新一个字段

转载 作者:可可西里 更新时间:2023-10-31 23:06:08 26 4
gpt4 key购买 nike

在我的应用程序的某些部分,我只需要更新一些包含很多字段的 table 的字段 is_active。仅更新此字段并避免所有其他字段的验证和要求的最佳方法是什么?

最佳答案

如果你只想更新特定的行,使用这个:

 $users= TableRegistry::get('Users');
$user = $users->get($id); // Return article with id = $id (primary_key of row which need to get updated)
$user->is_active = true;
// $user->email= abc@gmail.com; // other fields if necessary
if($users->save($user)){
// saved
} else {
// something went wrong
}

请参阅此处 ( Updating data in CakePHP3)。

关于php - 在 Cakephp 3 上只更新一个字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30218488/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com