$query = "SELECT id, noms FROM table ORDER BY id ASC";
$query2 = "UPDATE table SET `noms`=? WHERE `id`=?";
if ($stmt = $link->prepare($query)) {
$stmt2 = $link->prepare($query2);
$stmt2->bind_param('si',$noms,$id);
$stmt->execute();
mysqli_stmt_bind_result($stmt, $id, $noms);
while (mysqli_stmt_fetch($stmt)){
$noms = explode("|", $noms);
for($i=0;$i<count($noms);$i++){
$noms[$i]=$i.':'.$noms[$i];
}
$noms=implode('|',$noms);
$stmt2->execute();
}
}
这就是我想要做的,但是查询之间存在冲突问题。 我怎么能摆脱这个?
这是简化的。 php处理更复杂。不只是爆炸/内爆。 无法在Google上找到解决方案。
答案 0 :(得分:0)
为什么使用此mysqli_stmt_bind_result($stmt, $id, $noms);
?
为什么不使用此$stmt->bind_result($id, $noms);
?
检查此代码:
$query = "SELECT id, noms FROM table ORDER BY id ASC";
$query2 = "UPDATE table SET noms=? WHERE id=?";
if ($stmt = $link->prepare($query)) {
$stmt2 = $link->prepare($query2);
$stmt2->bind_param('si',$noms,$id);
$stmt->execute();
$stmt->bind_result($id, $noms);
while ($stmt->fetch()){
printf ("%s (%i)\n", $noms, $id);
//$stmt2->execute();
}
}