我有这条线:
$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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
mysql 中的 store_result() 和 get_result() 返回 falsestore_result() and get_result() in mysql returns false(mysql 中的 store_result() 和 get_result() 返回 false)
调用未定义的函数 mysqli_result::num_rows()Call to undefined function mysqli_result::num_rows()(调用未定义的函数 mysqli_result::num_rows())
PHP 准备好的语句问题PHP Prepared Statement Problems(PHP 准备好的语句问题)
mysqli_fetch_array 只返回一个结果mysqli_fetch_array returning only one result(mysqli_fetch_array 只返回一个结果)
PHP MySQLi 多次插入PHP MySQLi Multiple Inserts(PHP MySQLi 多次插入)
如何确保 MySQL 中的值在 PHP 中保持其类型?How do I make sure that values from MySQL keep their type in PHP?(如何确保 MySQL 中的值在 PHP 中保持其类型?)