From 3cf55ec9ca2a7d6a01131167a72141c9d654788b Mon Sep 17 00:00:00 2001 From: thinkphp Date: Mon, 8 Aug 2016 10:23:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E6=8E=89Builder=E7=B1=BB=E7=9A=84opti?= =?UTF-8?q?ons=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/think/db/Builder.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/library/think/db/Builder.php b/library/think/db/Builder.php index 52ae7f6a..6fbb8e46 100644 --- a/library/think/db/Builder.php +++ b/library/think/db/Builder.php @@ -24,9 +24,6 @@ abstract class Builder // 查询对象实例 protected $query; - // 查询参数 - protected $options = []; - // 数据库表达式 protected $exp = ['eq' => '=', 'neq' => '<>', 'gt' => '>', 'egt' => '>=', 'lt' => '<', 'elt' => '<=', 'notlike' => 'NOT LIKE', 'like' => 'LIKE', 'in' => 'IN', 'exp' => 'EXP', 'notin' => 'NOT IN', 'not in' => 'NOT IN', 'between' => 'BETWEEN', 'not between' => 'NOT BETWEEN', 'notbetween' => 'NOT BETWEEN', 'exists' => 'EXISTS', 'notexists' => 'NOT EXISTS', 'not exists' => 'NOT EXISTS', 'null' => 'NULL', 'notnull' => 'NOT NULL', 'not null' => 'NOT NULL', '> time' => '> TIME', '< time' => '< TIME', '>= time' => '>= TIME', '<= time' => '<= TIME', 'between time' => 'BETWEEN TIME', 'not between time' => 'NOT BETWEEN TIME', 'notbetween time' => 'NOT BETWEEN TIME'];