> Yaf中文手册 > Yaf_Request_Abstract::getMethod

名称

Yaf_Request_Abstract::getMethod

(Since Yaf 1.0.0.5)

public string Yaf_Request_Abstract::getMethod( void  );

获取当前请求的类型, 可能的返回值为GET,POST,HEAD,PUT,CLI等.

参数
void

本方法不需要参数

返回值

当前请求的类型.

例子

例 11.72. Yaf_Request_Abstract::getMethod的例子

     
     <?php
     class IndexController extends Yaf_Controller_Abstract {
        public funciton indexAction() {
          if ($this->getRequest()->getMethod() == "CLI") {
             echo "running in cli mode";
          }
        }
     }
     ?>