0 关注者

类 yii\db\conditions\SimpleCondition

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

类 SimpleCondition 表示一个简单的条件,如 "column" operator value

方法详情

隐藏继承的方法

__construct() 公共方法

SimpleCondition 构造函数

public void __construct ( $column, $operator, $value )
$column 混合

在 $operator 左侧的字面量

$operator 字符串

要使用的运算符。可以使用任何内容,例如 ><= 等。

$value 混合

在 $operator 右侧的字面量

                public function __construct($column, $operator, $value)
{
    $this->column = $column;
    $this->operator = $operator;
    $this->value = $value;
}

            
fromArrayDefinition() 公共静态方法

根据数组定义创建对象,如 查询构建器 - 运算符格式 指南文章中所述。

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

大写运算符。

$operands 数组

对应操作数的数组

抛出 yii\base\InvalidArgumentException

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

                public static function fromArrayDefinition($operator, $operands)
{
    if (count($operands) !== 2) {
        throw new InvalidArgumentException("Operator '$operator' requires two operands.");
    }
    return new static($operands[0], $operator, $operands[1]);
}

            
getColumn() 公共方法

public 混合 getColumn ( )

                public function getColumn()
{
    return $this->column;
}

            
getOperator() 公共方法

public 字符串 getOperator ( )

                public function getOperator()
{
    return $this->operator;
}

            
getValue() 公共方法

public 混合 getValue ( )

                public function getValue()
{
    return $this->value;
}