致命错误:无法通过引用传递参数 1

2021-12-25 00:00:00 php mysqli

我有这条线:

$stmt->bind_result('d', $keyarray['payment_gross']);

我收到此错误:

致命错误:无法在第 35 行的/home/star1231/public_html/pdt.php 中通过引用传递参数 1

Fatal error: Cannot pass parameter 1 by reference in /home/star1231/public_html/pdt.php on line 35

这里有什么问题?

推荐答案

关于你的代码我能说的不多,但是如果参数 1 在函数定义中通过引用传递,那么你需要这样做.

Not much I can tell about your code, but if parameter 1 is passed by reference in function definition then you need to do this.

$char = 'd';
$stmt->bind_result($char, $keyarray['payment_gross']);

只能通过引用传递变量,因为您传递的是变量的地址而不是实际值.让我知道它是否解决了

Only variables can be passed by reference since you are passing the address of the variable and not an actual value. Let me know if it solves it

相关文章