MySQLi预处理语句在insert上执行两次

时间:2016-01-15 05:00:37

标签: php mysqli prepared-statement sql-insert dynamicquery

我通常不会发布我的代码的详细版本;但是,在这种情况下,可能有必要弄清楚问题。我有一个类方法,我不能停止执行两次。 MySQLi准备好的语句中是否缺少任何特定信息?我读过类似的问题,要求同样无济于事。

我之前曾询问过有关在预准备语句中使用eval进行动态查询的问题,就其惯例和最佳做法而言。我被告知使用call_user_func_array()并且它工作得很好;但是,我没有注意到该语句每次执行两次,即使使用旧的eval()代码也是如此。所以我整理了一段我的ACTUAL代码,它应该通过我的评论来解释自己

    function insert($table, $query)
    {
        /**
         *
         * This code assumes you have a MySQLi connection stored in variable $db
         * USAGE: insert(table, array('field' => 'value');
         * 
        **/

        // Sets the beginning of the strings for the prepared statements

        $fields = $values = "(";
        $types = "";
        $params = array();

        foreach($query as $key => $val)
        {               
            // array keys = fields, and array values = values;
            $fields.= $key;

            // concatenate the question marks for statement
            $values.= "?";

            // concatenate the type chars
            $types.= is_string($val) ? "s" : (is_int($val) ? "i" : (is_double($val) ? "d" : "b"));

            // pass variables to array params by reference for call_user_func_array();
            $params[] = &$query[$key];

            if($val == end($query))
            {
                $fields .= ")";
                $values .= ")";
                array_unshift($params, $types);
            }
            else
            {
                $fields .= ", ";
                $values .= ", ";
            }
        }
        $str = "INSERT INTO {$table} {$fields} VALUES {$values}";
        if($stmt = $db->prepare($str))
        {
            call_user_func_array(array($stmt, 'bind_param'), $params);

            /**
             *
             * This is where I am pulling my hair out of my head and being 3
             * nothces away from banging my own head into the screen and
             * being without a computer at all.
             *
             * I have tried everything I can think of. I gotta be missing
             * something
             *
             * IT JUST KEEPS SENDING 2 ROWS DANG IT!
             *
             **/


            /////////////////////
            $stmt->execute();//// <---Help is needed here
            /////////////////////

            //-- Close connection;
            $stmt->close();
        }
        else
        {
            //-- Send a nice readable error msg
            die("<center><h3>FAULTY QUERY STRING</h3><h4>Please check query string</h4><p>{$str}</p>");
        }
    }

将代码格式从OOP更改为常规函数以进行测试,而无需创建类。

1 个答案:

答案 0 :(得分:0)

一个古老的问题,但是我可能还是会被人们迷惑。

我认为mysqli_query函数主要用于检索数据,我遇到了同样的问题,并通过在插入和更新查询中使用mysqli_real_query进行了修复。