致命错误:无法通过引用传递参数 1 [英] Fatal error: Cannot pass parameter 1 by reference

查看:21
本文介绍了致命错误:无法通过引用传递参数 1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这条线:

$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

这篇关于致命错误:无法通过引用传递参数 1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆