Class yii\db\conditions\ExistsCondition
| Inheritance | yii\ |
|---|---|
| Implements | yii\ |
| Available since version | 2.0.14 |
| Source Code | https://github.com/yiisoft/yii2/blob/master/framework/db/conditions/ExistsCondition.php |
Condition that represents EXISTS operator.
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | ExistsCondition constructor. | yii\ |
| fromArrayDefinition() | Creates object by array-definition as described in Query Builder – Operator format guide article. | yii\ |
| getOperator() | yii\ |
|
| getQuery() | yii\ |
Method Details
ExistsCondition constructor.
| public mixed __construct ( string $operator, yii\ | ||
| $operator | string |
The operator to use (e.g. |
| $query | yii\ |
The yii\ |
public function __construct($operator, $query)
{
$this->operator = $operator;
$this->query = $query;
}
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\ |
if input parameters are not suitable for this condition |
|---|---|---|
public static function fromArrayDefinition($operator, $operands)
{
if (!isset($operands[0]) || !$operands[0] instanceof Query) {
throw new InvalidArgumentException('Subquery for EXISTS operator must be a Query object.');
}
return new static($operator, $operands[0]);
}
User Contributed Notes
Leave a comment
Join the conversation to share a note.