gpt4 book ai didi

php - 如何查找和更新多条记录?

转载 作者:行者123 更新时间:2023-11-29 03:24:45 25 4
gpt4 key购买 nike

现在我有了这个名为 config 的表我用它来保存我的项目配置

然后我使用这个 Eloquent 方法来获取表?

$config = Config::pluck('value','name')->all();

问题是如何从数组更新整个表?

Array
(
[_method] => PUT
[_token] => FvpYFD6GeVaNIHTOwquycLlarhLuNoL6MiLwSqkJ
[site_title] => title
[site_description] => description
[site_keywords] => keyword1,keyword2
[taxonomy_paginate] => 20
[comment_disqusEnable] => on
[comment_disqusUsername] => username
)

提前致谢。

最佳答案

您可以使用循环更新多个记录。例如:

$configs = Config::all();

foreach ($configs as $config) {
$config->name = 'new name';
$config->value = 'new value';
$config->save();
}

关于php - 如何查找和更新多条记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38442766/

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