Inheritance | yii\db\conditions\BetweenCondition |
---|---|
Implements | yii\db\conditions\ConditionInterface |
Available since version | 2.0.14 |
Source Code | https://github.com/yiisoft/yii2/blob/master/framework/db/conditions/BetweenCondition.php |
Class BetweenCondition represents a BETWEEN
condition.
Method | Description | Defined By |
---|---|---|
__construct() | Creates a condition with the BETWEEN operator. |
yii\db\conditions\BetweenCondition |
fromArrayDefinition() | Creates object by array-definition as described in Query Builder – Operator format guide article. | yii\db\conditions\BetweenCondition |
getColumn() | yii\db\conditions\BetweenCondition | |
getIntervalEnd() | yii\db\conditions\BetweenCondition | |
getIntervalStart() | yii\db\conditions\BetweenCondition | |
getOperator() | yii\db\conditions\BetweenCondition |
Creates a condition with the BETWEEN
operator.
The literal to the left of $operator
Beginning of the interval
End of the interval
public function __construct($column, $operator, $intervalStart, $intervalEnd)
{
$this->column = $column;
$this->operator = $operator;
$this->intervalStart = $intervalStart;
$this->intervalEnd = $intervalEnd;
}
Creates object by array-definition as described in Query Builder – Operator format guide article.
public static $this fromArrayDefinition ( $operator, $operands ) | ||
$operator | string |
Operator in uppercase. |
$operands | array |
Array of corresponding operands |
throws | yii\base\InvalidArgumentException |
if wrong number of operands have been given. |
---|
public static function fromArrayDefinition($operator, $operands)
{
if (!isset($operands[0], $operands[1], $operands[2])) {
throw new InvalidArgumentException("Operator '$operator' requires three operands.");
}
return new static($operands[0], $operator, $operands[1], $operands[2]);
}
public function getColumn()
{
return $this->column;
}
public function getIntervalEnd()
{
return $this->intervalEnd;
}
public function getIntervalStart()
{
return $this->intervalStart;
}
public function getOperator()
{
return $this->operator;
}