-1
我在互聯網上發現這個和迄今爲止好一個條件!但我怎麼能在sql語句中添加2個或更多的條件?如何添加另一個條件pdo sql語句
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, $param);
$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 get($table, $where1, $where2) {
return $this->action('SELECT *', $table, $where, $where2);
}
條件$where
和$where2
等...我怎麼能做到這一點?即時通訊知道我應該創建新的方法action2和query2來實現這些變化,但正如我所說即時嘗試5天現在,我試了一切。 PLZ幫助我,並提前感謝!
我只想把它與1'$ where'參數,但要一個多維數組。例如:[['field','operator','value'],['field','operator','value']]''。你必須改變方法。 – Daan
我不介意改變方法,我試圖$ where = array(array(),array())和$ field = $其中[0] [0]等...但它沒有工作 –
你看到95%的我的項目是這些方法!但我需要過濾一些結果與3我假設的條件。 –