PDO - 更新和设置查询(2个数组)

时间:2012-06-01 18:25:21

标签: mysql arrays pdo

所以我需要在MySQL中更新和设置两个数组。 item_id [1,2,3]和item_order [2,1,3]

这是数组插入前的items表:

item_id item_order
  1         1 //should become 2
  2         2 // should become 1
  3         3 // should become 3

阵列应成对插入,1-2,2-1,3-3。 如何有效地使用准备好的语句执行此操作,如何测试数组项是否确实是数字?

2 个答案:

答案 0 :(得分:1)

以下是一个例子:

更新mytable     SET myfield = CASE other_field         什么时候那么'价值'         什么时候那么'价值'         3那么'价值'     结束 WHERE id IN(1,2,3)

答案 1 :(得分:1)

假设你有这样的输入:

$item_id = array(1, 2, 3);
$item_order = array(2, 1, 3);
// and a PDO connection named $pdo

你可以尝试这样的事情。 (我还假设您已将PDO配置为throw exceptions when problems arise)。

function all_numbers($input) {
  foreach($input as $o) {
    if(!is_numeric($o)) {
      return false;
    }
  }
  return true;
}

if(count($item_id) != count($item_order)) {
  throw new Exception("Input size mismatch!");
}

if(!all_numbers($item_id) || !all_numbers($item_order)) {
  throw new Exception("Invalid input format!");
}

$pairs = array_combine($item_id, $item_order);
// now $pairs will be an array(1 => 2, 2 => 1, 3 => 3);

if($pdo->beginTransaction()) {
  try {
    $stmt = $pdo->prepare('UPDATE `items` SET `item_order` = :order WHERE `item_id` = :id');

    foreach($pairs as $id => $order) {
      $stmt->execute(array(
        ':id' => $id,
        ':order' => $order,
      ));
    }
    $pdo->commit();
  } catch (Exception $E) {
    $tx->rollback();
    throw $E;
  }
} else {
  throw new Exception("PDO transaction failed: " . print_r($pdo->errorInfo(), true));
}

但重新设计输入可能会更好 - 只需按所需顺序传递item_ids并自动计算其item_order值。