Class yii\db\conditions\InCondition
Inheritance | yii\db\conditions\InCondition |
---|---|
Implements | yii\db\conditions\ConditionInterface |
Available since version | 2.0.14 |
Source Code | https://github.com/yiisoft/yii2/blob/master/framework/db/conditions/InCondition.php |
Class InCondition represents IN
condition.
Public Methods
Method | Description | Defined By |
---|---|---|
__construct() | SimpleCondition constructor | yii\db\conditions\InCondition |
fromArrayDefinition() | {@inheritdoc} | yii\db\conditions\InCondition |
getColumn() | yii\db\conditions\InCondition | |
getOperator() | yii\db\conditions\InCondition | |
getValues() | yii\db\conditions\InCondition |
Method Details
SimpleCondition constructor
public void __construct ( $column, $operator, $values ) | ||
$column | ||
$operator | string | The operator to use (e.g. |
$values |
{@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 string getOperator ( ) |
public yii\db\ExpressionInterface[]|string[]|integer[] getValues ( ) |
Signup or Login in order to comment.