名称
Yaf_Request_Abstract::getMethod
(Since Yaf 1.0.0.5)
public string Yaf_Request_Abstract::getMethod( void );
获取当前请求的类型, 可能的返回值为GET,POST,HEAD,PUT,CLI等.
例子
例 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";
}
}
}
?>