Class yii\db\conditions\SimpleCondition
| Inheritance | yii\db\conditions\SimpleCondition |
|---|---|
| Implements | yii\db\conditions\ConditionInterface |
| Subclasses | yii\db\conditions\LikeCondition |
| Available since version | 2.0.14 |
| Source Code | https://github.com/yiisoft/yii2/blob/master/framework/db/conditions/SimpleCondition.php |
Class SimpleCondition represents a simple condition like "column" operator value.
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | SimpleCondition constructor | yii\db\conditions\SimpleCondition |
| fromArrayDefinition() | {@inheritdoc} | yii\db\conditions\SimpleCondition |
| getColumn() | yii\db\conditions\SimpleCondition | |
| getOperator() | yii\db\conditions\SimpleCondition | |
| getValue() | yii\db\conditions\SimpleCondition |
Method Details
SimpleCondition constructor
| public void __construct ( $column, $operator, $value ) | ||
| $column | mixed | The literal to the left of $operator |
| $operator | string | The operator to use. Anything could be used e.g. |
| $value | mixed | The literal to the right of $operator |
{@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 mixed getValue ( ) |
Signup or Login in order to comment.