在 PHP mysqli 准备好的语句中连接字符串和变量的正确语法是什么?
我现在的代码是这样的:
if ($test_stmt2=$mysqli->prepare("UPDATE friends SET friendslist=friendslist+','+? WHERE friendsuserid=? ")) { //Insert userid and frienduserid into friends table
$test_stmt2->bind_param('si', $friendid, $userid); //Bind parameters (friend user id, your own user id)
$test_stmt2->execute(); //Execute the prepared query
echo "success";
}
基本上,我想获取friendslist
列中的字符串,为其添加一个逗号,然后将另一个变量字符串 ( $friendid
) 添加到friends
表中的该单元格。