我有一个这样的查询:
$query="select * from news where news_id = (select max(news_id) from news where news_id< $id)";
执行我使用类。在这个班级
public function query($query)
{
$this->_query = filter_var($query, FILTER_SANITIZE_STRING);
$stmt = $this->_prepareQuery();
$stmt->execute();
$results = $this->_dynamicBindResults($stmt);
return $results;
}
有什么方法<
可以不过滤信号吗?