Fatal error: Cannot pass parameter 1 by reference(致命错误:无法通过引用传递参数 1)
本文介绍了致命错误:无法通过引用传递参数 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:致命错误:无法通过引用传递参数 1


猜你喜欢
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- Laravel 仓库 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01