使用bindValue()的PDO查询方法似乎不起作用

时间:2014-04-21 16:00:03

标签: php mysql oop data-binding pdo

它永远不会奏效。当我在sql查询上执行var转储时,我发现问号仍在其中。这意味着这些值没有绑定吗?

我不明白为什么它没有约束价值。

有人可以帮帮我吗?

PHP

$ruleValue = "value1";
$input = "value2";
$inputValue = "value3";

$this->_db->query('SELECT * FROM ? WHERE ? = ?', array($ruleValue, $input, $inputValue));

方式

public function query($sql, $params = array()) {
    $this->_error = false;

    if($this->_query = $this->_pdo->prepare($sql)) {
        $x = 1;
        if(count($params)) {
            foreach($params as $param) {
                $this->_query->bindValue($x, $param);
                $x++;
            }
        }

        if($this->_query->execute()) {
            $this->_results = $this->_query->fetchAll(PDO::FETCH_OBJ);
            $this->_count = $this->_query->rowCount();
        } else {
            $this->_error = true;
        }
        var_dump($this->_query);
    }

    return $this;
}

的var_dump

object(PDOStatement)#5 (1) { ["queryString"]=> string(27) "SELECT * FROM ? WHERE ? = ?" }

1 个答案:

答案 0 :(得分:3)

您的代码:

$ruleValue = "value1";
$input = "value2";
$inputValue = "value3";

$this->_db->query('SELECT * FROM ? WHERE ? = ?', array($ruleValue, $input, $inputValue)

4行
不安全
保存状态 - >你为自己挖了一个巨大的陷阱 从来没有工作

常规PDO

$stmt = $this->db->prepare('SELECT * FROM value1 WHERE value2 = ?')
$stmt->execute([$value3]);
$results = $stmt->fetchAll();

3行
安全
无国籍 工作

结论:获取此恶意函数的RID并使用原始PDO