Class yii\db\conditions\HashCondition
Inheritance | yii\db\conditions\HashCondition |
---|---|
Implements | yii\db\conditions\ConditionInterface |
Available since version | 2.0.14 |
Source Code | https://github.com/yiisoft/yii2/blob/master/framework/db/conditions/HashCondition.php |
Condition based on column-value pairs.
Public Methods
Method | Description | Defined By |
---|---|---|
__construct() | HashCondition constructor. | yii\db\conditions\HashCondition |
fromArrayDefinition() | Creates object by array-definition as described in Query Builder – Operator format guide article. | yii\db\conditions\HashCondition |
getHash() | yii\db\conditions\HashCondition |
Method Details
HashCondition constructor.
public void __construct ( $hash ) | ||
$hash | array|null |
public function __construct($hash)
{
$this->hash = $hash;
}
Creates object by array-definition as described in Query Builder – Operator format guide article.
public static $this fromArrayDefinition ( $operator, $operands ) | ||
$operator | string |
Operator in uppercase. |
$operands | array |
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);
}
Signup or Login in order to comment.