當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Request::setRawParams方法代碼示例

本文整理匯總了PHP中Bluz\Proxy\Request::setRawParams方法的典型用法代碼示例。如果您正苦於以下問題:PHP Request::setRawParams方法的具體用法?PHP Request::setRawParams怎麽用?PHP Request::setRawParams使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Bluz\Proxy\Request的用法示例。


在下文中一共展示了Request::setRawParams方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testOptionsOne

 /**
  * OPTIONS request should set Allow header
  */
 public function testOptionsOne()
 {
     Request::setMethod(Request::METHOD_OPTIONS);
     Request::setRawParams([100042]);
     $this->processRest();
     $this->assertEquals('HEAD,OPTIONS,GET,PATCH,PUT,DELETE', Response::getHeader('Allow'));
 }
開發者ID:dezvell,項目名稱:mm.local,代碼行數:10,代碼來源:RestTest.php

示例2: processRoute

 /**
  * Process router by default rules
  *
  * Default routers examples
  *     /
  *     /:module/
  *     /:module/:controller/
  *     /:module/:controller/:key1/:value1/:key2/:value2...
  *
  * @return bool
  */
 protected function processRoute()
 {
     $uri = Request::getCleanUri();
     $uri = trim($uri, '/');
     $params = explode('/', $uri);
     if (sizeof($params)) {
         Request::setModule(array_shift($params));
     }
     if (sizeof($params)) {
         Request::setController(array_shift($params));
     }
     if ($size = sizeof($params)) {
         // save raw params
         Request::setRawParams($params);
         // remove tail
         if ($size % 2 == 1) {
             array_pop($params);
             $size = sizeof($params);
         }
         // or use array_chunk and run another loop?
         for ($i = 0; $i < $size; $i = $i + 2) {
             Request::setParam($params[$i], $params[$i + 1]);
         }
     }
     return true;
 }
開發者ID:Kit-kat1,項目名稱:custom-bluz-app,代碼行數:37,代碼來源:Router.php

示例3: function

 */
namespace Application;

use Application\Auth\Table;
use Bluz\Proxy\Auth;
use Bluz\Proxy\Request;
return function ($resource, $id, $relation, $relationId) {
    /**
     * @var Bootstrap $this
     */
    $this->useJson();
    Auth::clearIdentity();
    try {
        // authentication
        if ($token = $this->getRequest()->getParam('token')) {
            Table::getInstance()->authenticateToken($token);
        }
        $params = [];
        foreach ([$id, $relation, $relationId] as $param) {
            if (!is_null($param)) {
                $params[] = $param;
            }
        }
        Request::setRawParams($params);
        return $this->dispatch('api', $resource);
    } catch (\Exception $e) {
        // process exceptions here
        $this->getResponse()->setStatusCode($e->getCode());
        return (object) ['error' => $e->getMessage()];
    }
};
開發者ID:dezvell,項目名稱:skeleton,代碼行數:31,代碼來源:index.php


注:本文中的Bluz\Proxy\Request::setRawParams方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。