0 关注者

类 yii\db\conditions\NotCondition

继承yii\db\conditions\NotCondition
实现yii\db\conditions\ConditionInterface
可用版本2.0.14
源代码 https://github.com/yiisoft/yii2/blob/master/framework/db/conditions/NotCondition.php

反转传递的条件的条件。

公共方法

隐藏继承的方法

方法 描述 定义
__construct() NotCondition 构造函数。 yii\db\conditions\NotCondition
fromArrayDefinition() 通过数组定义创建对象,如 查询生成器 - 运算符格式 指南文章中所述。 yii\db\conditions\NotCondition
getCondition() yii\db\conditions\NotCondition

方法细节

隐藏继承的方法

__construct() 公共方法

NotCondition 构造函数。

public void __construct ( $condition )
$condition 混合

要取反的条件。

                public function __construct($condition)
{
    $this->condition = $condition;
}

            
fromArrayDefinition() 公共静态方法

通过数组定义创建对象,如 查询生成器 - 运算符格式 指南文章中所述。

public static $this fromArrayDefinition ( $operator, $operands )
$operator 字符串

运算符大写。

$operands 数组

相应操作数的数组。

抛出 yii\base\InvalidArgumentException

如果给出错误的操作数数量。

                public static function fromArrayDefinition($operator, $operands)
{
    if (count($operands) !== 1) {
        throw new InvalidArgumentException("Operator '$operator' requires exactly one operand.");
    }
    return new static(array_shift($operands));
}

            
getCondition() 公共方法

public 混合 getCondition ( )

                public function getCondition()
{
    return $this->condition;
}