Class yii\db\conditions\SimpleCondition
类 SimpleCondition 表示一个简单的条件,如 “column” operator value
。
公共方法
方法 | 描述 | 被定义在 |
---|---|---|
__construct() | SimpleCondition 构造函数。 | yii\db\conditions\SimpleCondition |
fromArrayDefinition() | 按照 文档:查询构建器 - 操作符格式 文档中的描述, 以数组定义创建对象。 | yii\db\conditions\SimpleCondition |
getColumn() | yii\db\conditions\SimpleCondition | |
getOperator() | yii\db\conditions\SimpleCondition | |
getValue() | yii\db\conditions\SimpleCondition |
方法详情
SimpleCondition 构造函数。
public void __construct($column, $operator, $value) | ||
$column | mixed | $operator 左边的字符 |
$operator | string | 要使用的运算符。任何场景下都可以使用,例如: |
$value | mixed | $operator 右边的字符 |
按照 文档:查询构建器 - 操作符格式 文档中的描述, 以数组定义创建对象。
public static $this fromArrayDefinition($operator, $operands) | ||
$operator | string | 操作符大写。 |
$operands | array | 相应操作数的数组。 |
throws | yii\base\InvalidArgumentException | 如果给出错误操作数,则抛出 InvalidArgumentException 异常。 |
---|
public mixed getColumn() |
public string getOperator() |
public mixed getValue() |