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() | {@inheritdoc} | 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 void __construct ( $column, $operator, $intervalStart, $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 |
{@inheritdoc}
public static void fromArrayDefinition ( $operator, $operands ) | ||
$operator | ||
$operands | ||
throws | yii\base\InvalidArgumentException | if wrong number of operands have been given. |
---|
public mixed getColumn ( ) |
public mixed getIntervalEnd ( ) |
public mixed getIntervalStart ( ) |
public string getOperator ( ) |
Signup or Login in order to comment.