DB连接类:绑定问题

时间:2016-01-09 03:50:52

标签: php class pdo bind

我有一个DB连接类,一切都很好,除了绑定值的步骤,它在所有字段中插入最后一个字段数据加上类型,而绑定返回数字2而不是(INT,BOOL,NULL,.. 。)正如我所说:

enter image description here

所以,它应该插入:

在field1中填写fied1 在field2中倒入fied2 在field3中填写fied3

等等,这是代码:

<?php

final class crud {


public function __construct($connexionName) {

    $this->connexionName  = $connexionName;
}


public final function insert($tableName, $fields=array()){

        $this->tableName = $tableName;
        $this->fields    = $fields;


        foreach ($this->fields as $vf) {

            $inKeys[]       = $vf;
            $inKeysDotted[] = ':' . $vf;

            $insImKeys       = implode(', ', $inKeys);
            $insImKeysDotted = implode(', ', $inKeysDotted);


            $this->insImKeys         = $insImKeys;
            $this->insImKeysDotted   = $insImKeysDotted;

        }

            $this->insertedKeys         = $inKeys;
            $this->insertedKeysDotted   = $inKeysDotted;

            //print_r($this->insertedKeys);

            //echo '<br />';

        $sql = "INSERT INTO `$this->tableName` ($this->insImKeys) VALUES ($this->insImKeysDotted);";
        //echo $sql.'<br />';

        $insertItems = $this->connexionName->prepare($sql);

        $this->insertItems    = $insertItems;

        //print_r($insertItems).'<br />';

} // end prepareStm()


public final function bindParams($setValues=array()){


    $combine = array_combine($this->insertedKeys, $setValues);

    foreach ($combine as $getKey => $getVal) {

        switch ($getVal) {
        case is_int($getVal):
            //echo $getVal .' is INT<br />';
            $setType = PDO::PARAM_INT;
            //return PDO::PARAM_INT;
            break;
        case is_bool($getVal):
            //echo $getVal .' is BOOL<br />';
            $setType = PDO::PARAM_BOOL;
            //return PDO::PARAM_BOOL;
            break;
        case is_null($getVal):
            //echo $getVal .' is NULL<br />';
            $setType = PDO::PARAM_NULL;
            //return PDO::PARAM_NULL;
            break;
        default:
            //echo $getVal .' is STR<br />';
            $setType = PDO::PARAM_STR;
            //return PDO::PARAM_STR;
            break;

        return $setType;
    }


   echo "this->insertItems->bindParam($getKey, $getVal, $setType)<br />";
   $this->insertItems->bindParam($getKey, $getVal, $setType);

   //echo '<pre>';
   //print_r($this->insertItems);
   //echo '</pre>';


    }


} // end bindParams()


public final function executeQuery(){
    return $this->insertItems->execute();
}



}

require_once '../Included_Files/Connect.php';



$con = new crud($connexion);

echo '<br />';

$con->insert('test', array('field1', 'field2', 'field3'));
$con->bindParams(array('pour field1', 'pour field2', 'pour field3'));
$con->executeQuery();

?>

echo和print_r的结果是:

INSERT INTO `test` (field1, field2, field3) VALUES (:field1, :field2, :field3);
this->insertItems->bindParam(field1, pour field1, 2)

this->insertItems->bindParam(field2, pour field2, 2)

this->insertItems->bindParam(field3, pour field3, 2) 

感谢您的支持

1 个答案:

答案 0 :(得分:2)

您的代码中存在两个问题,一个是主要问题,另一个是次要问题。

首先,因为您使用的是PDOStatement::bindParam(),所以您绑定的是变量,而不是值。这意味着当你打电话

$this->insertItems->bindParam("field1", $getVal, PDO::PARAM_STR);
$this->insertItems->bindParam("field2", $getVal, PDO::PARAM_STR);
$this->insertItems->bindParam("field3", $getVal, PDO::PARAM_STR);

在循环的三次连续迭代中,那些字段的所有三个都绑定到变量$getVal,其值每次都在循环中改变。

您要做的是致电PDOStatement::bindValue()。这会将$getVal值(在您调用时)绑定到参数,而不是变量本身。

这是您的主要问题,解决这些问题会使您的代码(主要是)工作。


你的较小问题是你的switch语句:

switch ($getVal) {
   case is_int($getVal):
   ...

这相当于写if($getVal == is_int($getVal))。这意味着,如果$getVal === '0'(即$getVal是一个在布尔上下文中值为false的字符串),那么'0' == is_int($getVal)(&#39; 0&#39;不是int,所以is_int返回false),你最终试图绑定字符串&#39; 0&#39; 0作为整数。

相反,您应该使用if / else if系列语句替换switch语句,或者使用switch(true)替换。