gpt4 book ai didi

php - 准备声明问题发送加密信息

转载 作者:行者123 更新时间:2023-11-29 07:50:55 25 4
gpt4 key购买 nike

这是我目前的声明。一切都工作正常,直到我添加 key

key 只是为用户激活帐户而生成的哈希值。

$stmt = $mysqli->prepare("INSERT INTO Account (accountUsername,accountPassword,accountEmail,accountActivate,accountKey) VALUES (?, ?, ?,?,?)");
$stmt->bind_param('sssiss', $username, $newPassword, $email,0,$key,time());

当我执行此代码时,出现错误。

Cannot pass parameter 5 by reference

您知道可能出现什么问题吗?

谢谢!

编辑代码:

$stmt = $mysqli->prepare("INSERT INTO Account (accountUsername,accountPassword,accountEmail,accountActivate,accountKey,accountCreated) VALUES (?, ?, ?,?,?,?)");
$stmt->bind_param('sssisi', $username, $newPassword, $email,0,$key,$time);

http://i.stack.imgur.com/Th5tl.png

最佳答案

如果您使用 bind_param,则 0 需要位于变量中,因为 bind_param 通过引用传递。

$somevar=0;
$stmt = $mysqli->prepare("INSERT INTO Account (accountUsername,accountPassword,accountEmail,accountActivate,accountKey) VALUES (?, ?, ?, ?,?,?)");
$stmt->bind_param('sssiss', $username, $newPassword, $email,$somevar,$key,$time);

关于php - 准备声明问题发送加密信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26444738/

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