Class yii\db\conditions\BetweenCondition
| 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.
Public Methods
| 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 |
Method Details
Creates a condition with the BETWEEN operator.
| public mixed __construct ( mixed $column, string $operator, mixed $intervalStart, mixed $intervalEnd ) | ||
| $column | mixed | The literal to the left of $operator |
| $operator | string | The operator to use (e.g. |
| $intervalStart | mixed | Beginning of the interval |
| $intervalEnd | mixed | 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 static fromArrayDefinition ( mixed $operator, mixed $operands ) | ||
| $operator | mixed | Operator in uppercase. |
| $operands | mixed | 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 mixed getIntervalStart ( ) |
public function getIntervalStart() { return $this->intervalStart; }
Signup or Login in order to comment.