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


PHP Request::getBodyParams方法代碼示例

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


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

示例1: get

 /**
  * 從請求中獲取值
  * @param $key
  * @param string $value
  * @return string
  */
 protected function get($key, $value = '')
 {
     $params = ArrayHelper::merge($_GET, $_POST);
     $params = ArrayHelper::merge($params, $this->request->getBodyParams());
     if (isset($params[$key])) {
         return $params[$key];
     }
     return $value;
 }
開發者ID:heartshare,項目名稱:yii2-liuxy-extension,代碼行數:15,代碼來源:WebController.php

示例2: actionSuccesspay

 public function actionSuccesspay()
 {
     //      vd(['get' => Yii::$app->request->getQueryParams() ,
     //          'post' => Yii::$app->request->getBodyParams()],1);
     $r = new Request();
     //Yii::info(\yii\helpers\Json::encode($requestData), 'apiRequest');
     \Yii::info('[DEBUG_ME]' . print_r(['get' => $r->getQueryParams(), 'post' => $r->getBodyParams()], true), 'appDebug');
     if ($r->post('action')) {
         vd(['get' => $r->getQueryParams(), 'post' => $r->getBodyParams()], 1);
     }
     $order = Order::findOne($r->post('orderNumber'));
     if ($order) {
     } else {
         vd($order);
     }
     $project = $order->project;
     return $this->render('successpay', ['project' => $project]);
 }
開發者ID:pjoger,項目名稱:pon4ik,代碼行數:18,代碼來源:OrderController.php

示例3: get

 /**
  * 從請求中獲取值,包含POST和GET請求域以及通過php://input獲取的數據
  * @param $key
  * @param string $value
  * @return string
  */
 protected function get($key, $value = '')
 {
     $params = ArrayHelper::merge($_GET, $_POST);
     if (isset($params[$key])) {
         return $params[$key];
     }
     foreach ($this->request->getBodyParams() as $k => $val) {
         if (!isset($params[$k])) {
             $params[$k] = $val;
         }
     }
     if (isset($params[$key])) {
         return $params[$key];
     }
     if ($this->request->getCookies()->has($key)) {
         return $this->request->getCookies()->getValue($key);
     }
     return $value;
 }
開發者ID:highestgoodlikewater,項目名稱:yii2-liuxy-extension,代碼行數:25,代碼來源:WebController.php

示例4: load

 /**
  * Loads query and post params into the model.
  * @param ActiveRecord $model
  * @param Request $request
  * @return bool true if post params were loaded.
  */
 protected function load($model, $request)
 {
     $model->load($request->getQueryParams());
     return $model->load($request->getBodyParams());
 }
開發者ID:netis-pl,項目名稱:yii2-crud,代碼行數:11,代碼來源:UpdateAction.php

示例5: setRequestParams

 public function setRequestParams(Request $request)
 {
     $this->requestParams = array_merge($request->getQueryParams(), $request->getBodyParams());
 }
開發者ID:xiaomige,項目名稱:giishop,代碼行數:4,代碼來源:BaseController.php

示例6: load

 /**
  * 從請求域中加載數據
  * @param \yii\web\Request $request
  * @param string $formName
  * @return bool
  */
 public function load($request, $formName = null)
 {
     $data = $request->getBodyParams();
     $keys = array_keys($this->getAttributes());
     if ($formName == null) {
         foreach ($keys as $key) {
             if (isset($data[$key]) && !is_array($data[$key])) {
                 $this->setAttribute($key, $data[$key]);
             }
         }
         return true;
     } elseif (isset($data[$formName])) {
         foreach ($keys as $key) {
             if (isset($data[$formName][$key]) && !is_array($data[$formName][$key])) {
                 $this->setAttribute($key, $data[$formName][$key]);
             }
         }
         return true;
     } else {
         return false;
     }
 }
開發者ID:heartshare,項目名稱:yii2-liuxy-extension,代碼行數:28,代碼來源:ActiveRecord.php


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