я нашел в интернете это и пока все хорошо с одним условием !! но как я могу добавить 2 или более условий в 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 дней, и я попробовал все. Пожалуйста, помогите мне и спасибо заранее!
Я нашел решение, но мне пришлось снизить безопасность ..
я только изменил это!
public function action3($action, $table, $where = array()) {
/*if(count($where) === 6 ) {*/
$operators = array('=', '>', '<', '>=', '<=');
$field1 = $where[0];
$operator1 = $where[1];
$value1 = $where[2];
$field2 = $where[3];
$operator2 = $where[4];
$value2 = $where[5];
/*if(in_array($operator, $operators)) {*/
$sql = "{$action} FROM {$table} WHERE {$field1} {$operator1} {$value1} AND {$field2} {$operator2} {$value2}";
if(!$this->query($sql, array($value1, $value2))->error()) {
return $this;
}
/* }*/
/* }*/
return false;
}
public function get3($table, $where) {
return $this->action3('SELECT *', $table, $where);
}
Других решений пока нет …