php – 无法在mysqli_stmt对象上使用call_user_func_array

前端之家收集整理的这篇文章主要介绍了php – 无法在mysqli_stmt对象上使用call_user_func_array前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在为 MySQLi编写一个包装类.在那里,我正在编写一个函数来接受一个查询和可变数量的参数,我可以在其中调用MysqLi_stmt :: bind_param.这是代码
<?PHP
    class DbHelper {
        ....
        public function Execute($query,$params){
            $this->open(); # Opens a connection to the database using MysqLi API
            $stmt = $this->MysqLi->prepare($query);
            try{
                $result = call_user_func_array(array($stmt,'bind_param'),$params);
            }
            catch(Exception $ex){
                # Handle Exception
            }
        }
        ....
    }
?>

这是我调用函数的方式:

<?PHP
    $db = new DbHelper();
    $params = array('i',$stateID);
    $result = $db->Execute('SELECT * FROM mst_cities WHERE State_ID = ?',$params);    
?>

当我运行代码时,我得到一个警告:
警告:参数2到MysqLi_stmt :: bind_param()应该是一个引用,值在……中给出

我该怎么办?

docs

Note:

Care must be taken when using MysqLi_stmt_bind_param() in conjunction with call_user_func_array(). Note that MysqLi_stmt_bind_param() requires parameters to be passed by reference,whereas call_user_func_array() can accept as a parameter a list of variables that can represent references or values.

评论中有一些解决方法,例如see this

call_user_func_array(array($stmt,refValues($params));

function refValues($arr)
{
    if (strnatcmp(PHPversion(),'5.3') >= 0) //Reference is required for PHP 5.3+
    {
        $refs = array();
        foreach($arr as $key => $value)
            $refs[$key] = &$arr[$key];
        return $refs;
    }
    return $arr;
}
原文链接:https://www.f2er.com/php/138373.html

猜你在找的PHP相关文章