本文整理匯總了PHP中Bluz\Proxy\Request::setMethod方法的典型用法代碼示例。如果您正苦於以下問題:PHP Request::setMethod方法的具體用法?PHP Request::setMethod怎麽用?PHP Request::setMethod使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Bluz\Proxy\Request
的用法示例。
在下文中一共展示了Request::setMethod方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testErrorController
/**
* Test run Error Controller
*/
public function testErrorController()
{
// setup Request
Request::setRequestUri(uniqid('module') . '/' . uniqid('controller'));
Request::setMethod(Request::METHOD_GET);
// run Application
$this->getApp()->process();
$this->assertEquals(Router::getErrorModule(), $this->getApp()->getModule());
$this->assertEquals(Router::getErrorController(), $this->getApp()->getController());
}
示例2: prepareRequest
/**
* prepareRequest
*
* @param string $uri in format "module/controllers"
* @param array $params of request
* @param string $method HTTP
* @param bool $ajax
* @return Http\Request
*/
private function prepareRequest($uri, array $params = null, $method = Http\Request::METHOD_GET, $ajax = false)
{
Request::setRequestUri($uri);
Request::setOptions(Config::getData('request'));
Request::setMethod($method);
// process $_GET params
if ($query = stristr($uri, '?')) {
$query = substr($query, 1);
// remove `?` sign
parse_str($query, $_GET);
// fill $_GET
}
// process custom params
if ($params) {
Request::setParams($params);
}
if ($ajax) {
$_SERVER['HTTP_ACCEPT'] = 'application/json';
$_SERVER['HTTP_X_REQUESTED_WITH'] = 'XMLHttpRequest';
} else {
$_SERVER['HTTP_ACCEPT'] = 'text/html';
}
}
示例3: testNotImplementedException
/**
* HEAD should return EXCEPTION
* @expectedException \Bluz\Application\Exception\NotImplementedException
*/
public function testNotImplementedException()
{
Request::setMethod(Request::METHOD_TRACE);
$this->processRest();
}
示例4: testNotImplementedException
/**
* HEAD should return EXCEPTION
* @expectedException \Bluz\Application\Exception\NotImplementedException
*/
public function testNotImplementedException()
{
Request::setMethod(Request::METHOD_HEAD);
$this->processCrud();
}