选择语言 :

 Module_OOP_ORM_Finder_REST::method

设置,获取REST的类型

string Module_OOP_ORM_Finder_REST::method( [ string $method = null ] )

参数列表

参数 类型 描述 默认值
$method string GET|POST|DELETE|PUT 等,不传则返回当前method null
返回值
  • string
  • $this
File: ./modules/oop/orm/finder/rest.class.php
public function method($method = null)
{
    if (null===$method)return $this->method;

    if (null===$this->_default_method)
    {
        $this->_default_method = $this->method;
    }

    $this->method = strtoupper($method);

    return $this;
}