PHP OOP问题与数据库

时间:2015-01-28 18:45:23

标签: php mysql oop

我使用DB类中的get()函数从数据库查询用户名..它总是返回'没有用户'即使数据库中存在用户.. 这是我的DB.php

<?php
class DB{
    private static $_instance = null;
    private $_pdo, 
            $_query, 
            $_error = false, 
            $_results, 
            $_count = 0;

    private function __construct(){
        try {
            $this->_pdo = new PDO('mysql:host=' . Config::get('mysql/host') . ';dbname='. Config::get('mysql/db'), Config::get('mysql/username'), Config::get('mysql/password'));

        } catch (PDOException $e) {
            die($e->getMessage());
        }
    }

    public static function getInstance() {
        if (!isset(self::$_instance)) {
            self::$_instance = new DB();
        }
        return self::$_instance;
    }

    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, $params);
                    $x++;
                }
            }

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

    public function action($action, $table, $where = array()) {
        if (count($where) === 3) {
            $operators = array('=','>','<','>=','<=');

            $field    = $where[0];
            $operator = $where[1];
            $value    = $where[2];

            if (in_array($operator, $operators)) {
                $sql = "{$action} FROM {$table} WHERE {$field} {$operator} ?";

                if(!$this->query($sql, array($value))->error()){
                    return $this;
                }
            }
        }
        return false;
    }

    public function get($table, $where) {
        return $this->action('SELECT *', $table, $where);
    }

    public function delete($table, $where) {
        return $this->action('DELETE', $table, $where);
    }

    public function results(){
        return $this->_results;
    }

    public function error(){
        return $this->_error;   
    }

    public function count(){
        return $this->_count;   
    }
}

的index.php

<?php
require_once 'core/init.php';

$user = DB::getInstance();
$user->get('users', array('username', '=', 'alex'));

if(!$user->count()) {
    echo 'No user';
} else {
    foreach ($user->results() as $user) {
        echo $user->username, '<br>';
    }
}

我得到了没有用户&#39;即使我在数据库中有现有用户,如果我使用它..

$ user = DB :: getInstance() - &gt; get(&#39; users&#39;,array(&#39; username&#39;,&#39; =&#39;,&#39; ;阿莱克斯&#39;));

但如果我用get()替换get(),它会返回正确的用户名(包括&#39; alex&#39;)

$ user = DB :: getInstance() - &gt;查询(&#34; SELECT * FROM users&#34;);

3 个答案:

答案 0 :(得分:3)

在您的查询功能绑定时,您执行:

foreach ($params as $param) {
    $this->_query->bindValue($x, $params);
    $x++;
}

你绑定$params这是一个数组,而不是值。将$params更改为$param(单数),它可能会有效。

答案 1 :(得分:1)

请查看此答案Row count with PDO

  

PDO有PDOStatement :: rowCount(),显然在MySql中不起作用。多么痛苦。

答案 2 :(得分:-1)

尝试更改

$sql = "{$action} FROM {$table} WHERE {$field} {$operator} ?";

$sql = "{$action} FROM {$table} WHERE {$field} {$operator} {$value}";