选择语言 :

 Module_OOP_ORM_Finder_REST::where

设置查询条件

OOP_ORM_Finder_REST Module_OOP_ORM_Finder_REST::where( mixed $column [, string $value = null , mixed $op = string(1) "=" ] )

参数列表

参数 类型 描述 默认值
$column mixed Column name or array($column, $alias) or object
$value string Logic operator null
$op mixed Column value string(1) "="
返回值
  • OOP_ORM_Finder_REST
File: ./modules/oop/orm/finder/rest.class.php
public function where($column, $value = null, $op = '=')
{
    $this->arguments['where'][] = array($column, $value, $op);

    return $this;
}