Class yii\db\conditions\BetweenCondition
继承 | yii\db\conditions\BetweenCondition |
---|---|
实现 | yii\db\conditions\ConditionInterface |
可用版本自 | 2.0.14 |
源码 | https://github.com/yiichina/yii2/blob/api/framework/db/conditions/BetweenCondition.php |
BetweenCondition 类表示 BETWEEN
条件。
公共方法
方法详情
使用 BETWEEN
运算符创建条件。
public void __construct($column, $operator, $intervalStart, $intervalEnd) | ||
$column | mixed | $operator 左边的文字 |
$operator | string | 要使用的运算符(例如: |
$intervalStart | mixed | 间隔开头 |
$intervalEnd | mixed | 间隔结尾 |
按照 文档:查询构建器 - 操作符格式 文档中的描述, 以数组定义创建对象。
public static $this fromArrayDefinition($operator, $operands) | ||
$operator | string | 操作符大写。 |
$operands | array | 相应操作数的数组。 |
throws | yii\base\InvalidArgumentException | 如果已给出错误的操作数,则抛出 InvalidArgumentException 异常。 |
---|
public mixed getColumn() |
public mixed getIntervalEnd() |
public mixed getIntervalStart() |
public string getOperator() |