可能重复:
Is it possible to pass parameters by reference using call_user_func_array()?
我有以下代码行在PHP 5.1中工作,但在PHP 5.3中不起作用。
$input = array('ss','john','programmer');
call_user_func_array(array($mysqli_stmt, 'bind_param'), $input);
在PHP 5.3中,我收到以下警告消息:
警告:参数2到mysqli_stmt :: bind_param()应该是一个引用,在第785行/var/www/startmission/em/class/cls.data_access_object.php中给出的值
我将代码更改为以下内容并且有效:
$a = 'johnl';
$b = 'programmer';
$mysqli_stmt->bind_param('ss',$a,$b);
我在php文档中找到了这个:
使用mysqli_stmt_bind_param()时必须小心 与call_user_func_array()结合使用。注意 mysqli_stmt_bind_param()要求参数通过引用传递, 而call_user_func_array()可以接受一个列表作为参数 可以表示引用或值的变量。
所以我的问题是,如何复制call_user_func_array + bind_params的功能,以便我可以在运行时动态绑定变量?
答案 0 :(得分:13)
我在fabio at kidopi dot com dot br3 years ago on the PHP manual page of mysqli_stmt::bind_param()
的用户注释中找到了我的问题的答案(稍加修改):
迁移到php 5.3后,我曾经遇到
call_user_func_array
和bind_param
的问题。原因是5.3需要数组值作为参考,而5.2使用实际值(但也使用引用)。所以我创建了一个辅助函数来帮助我解决这个问题:
function refValues($arr) { $refs = array(); foreach ($arr as $key => $value) { $refs[$key] = &$arr[$key]; } return $refs; }
并改变了我之前的功能:
call_user_func_array(array($this->stmt, "bind_param"), $this->values);
到:
call_user_func_array(array($this->stmt, "bind_param"), refValues($this->values));
这样我的db函数在PHP 5.2 / 5.3服务器中继续工作。