求教一个素组问题

$arr=[
            'id'=>[
                1,
                2
            ],
            'temp'=>[
                'x','y'
            ],
            'user'=>[
                 'b','f'
            ]
         ];
         
       这样的数组如何生成两条update的sql语句
       update set temp=x ,user=b where id=1
       update set temp=y,user=f where id=2
阅读 1.1k
1 个回答
<?php
$arr=[
    'id'=>[
        1,
        2
    ],
    'temp'=>[
        'x','y'
    ],
    'user'=>[
         'b','f'
    ]
];
$sqls = [];
$whereKey = key($arr);
$whereParams = array_shift($arr);
$updateKeys = array_keys($arr);
foreach ($whereParams as $index => $whereValue) {
    $updateSqlArr = array_map(function($updateKey) use ($index, $arr) {
        return $updateKey . ' = ' . $arr[$updateKey][$index];
    }, $updateKeys);

    $sqls[] = 'update tablename set ' . implode(', ', $updateSqlArr) . ' where ' . $whereKey . ' = ' . $whereValue;
}
var_dump($sqls);

结果

array(2) {
  [0]=>
  string(52) "update tablename set temp = x, user = b where id = 1"
  [1]=>
  string(52) "update tablename set temp = y, user = f where id = 2"
}

如果使用 ORM 框架更新数据例如Article::where($whereKey, $whereValue)->update($updateArr);,可以改为

<?php
$arr=[
    'id'=>[
        1,
        2
    ],
    'temp'=>[
        'x','y'
    ],
    'user'=>[
         'b','f'
    ]
];
// 数组第一个元素是 where 条件, 其余的所有元素都是更新对象
$whereKey = key($arr);
// 获取 where 条件并从数组去掉
$whereParams = array_shift($arr);

$updateKeys = array_keys($arr);
foreach ($whereParams as $index => $whereValue) {
    $updateArr = [];
    foreach ($updateKeys as $updateKey) {
        $updateArr[$updateKey] = $arr[$updateKey][$index];
    }
    Article::where($whereKey, $whereValue)->update($updateArr);
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题