Abstract Class yii\db\conditions\ConjunctionCondition
| Inheritance | yii\db\conditions\ConjunctionCondition |
|---|---|
| Implements | yii\db\conditions\ConditionInterface |
| Subclasses | yii\db\conditions\AndCondition, yii\db\conditions\OrCondition |
| Available since version | 2.0.14 |
| Source Code | https://github.com/yiisoft/yii2/blob/master/framework/db/conditions/ConjunctionCondition.php |
Class ConjunctionCondition
Protected Properties
| Property | Type | Description | Defined By |
|---|---|---|---|
| $expressions | array | yii\db\conditions\ConjunctionCondition |
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | yii\db\conditions\ConjunctionCondition | |
| fromArrayDefinition() | Creates object by array-definition as described in Query Builder – Operator format guide article. | yii\db\conditions\ConjunctionCondition |
| getExpressions() | yii\db\conditions\ConjunctionCondition | |
| getOperator() | Returns the operator that is represented by this condition class, e.g. AND, OR. |
yii\db\conditions\ConjunctionCondition |
Property Details
Method Details
| public mixed __construct ( mixed $expressions ) | ||
| $expressions | mixed | |
public function __construct($expressions) // TODO: use variadic params when PHP>5.6
{
$this->expressions = $expressions;
}
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\InvalidParamException |
if input parameters are not suitable for this condition |
|---|---|---|
public static function fromArrayDefinition($operator, $operands)
{
return new static($operands);
}
Returns the operator that is represented by this condition class, e.g. AND, OR.
| public abstract string getOperator ( ) |
abstract public function getOperator();
Signup or Login in order to comment.