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


PHP CHttpRequest::getPost方法代碼示例

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


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

示例1: respondIfAjaxRequest

 /**
  *
  * @param CHttpRequest $request        	
  * @param User $model        	
  */
 private function respondIfAjaxRequest($request, $model)
 {
     $ajaxRequest = $request->getPost('ajax', false);
     if (!$ajaxRequest or $ajaxRequest !== 'signup-form') {
         return;
     }
     echo CActiveForm::validate($model, array('email', 'password', 'verifyCode'));
     Yii::app()->end();
 }
開發者ID:LumbaJack,項目名稱:Mercado-BTX,代碼行數:14,代碼來源:SignupController.php

示例2: processCheckout

 /**
  * @param Payment $payment
  * @param CHttpRequest $request
  * @return bool|static
  */
 public function processCheckout(Payment $payment, CHttpRequest $request)
 {
     $orderId = (int) $request->getPost('order');
     if (!$orderId) {
         return false;
     }
     $order = Order::model()->findByPk($orderId);
     if (null === $order) {
         return false;
     }
     if ($order->pay($payment, Order::PAID_STATUS_NOT_PAID)) {
         return $order;
     }
     return false;
 }
開發者ID:yupe,項目名稱:yupe,代碼行數:20,代碼來源:ManualPaymentSystem.php

示例3: actionRating

 public function actionRating()
 {
     if (!($rating = MovieRating::model()->find('movie_id=:movie_id AND user_id=:user_id', array(':movie_id' => CHttpRequest::getPost('id'), ':user_id' => Yii::app()->user->id)))) {
         $rating = new MovieRating();
         $rating->movie_id = CHttpRequest::getPost('id');
         $rating->user_id = Yii::app()->user->id;
     }
     $rating->value = CHttpRequest::getPost('rate');
     $rating->save();
     var_dump($rating);
 }
開發者ID:unused,項目名稱:yii-lmdb,代碼行數:11,代碼來源:MovieController.php

示例4: getPost

 /**
  * Returns the named POST parameter value, or the entire POST array if no name is specified.
  * If $name is specified and the POST parameter does not exist, $defaultValue will be returned.
  *
  * @param null $name The POST parameter name or null.  If $name is null, it will return the entire POST array.
  * @param null   $defaultValue The default parameter value is $name is not null and the POST parameter does not exist.
  * @return mixed|null
  */
 public function getPost($name = null, $defaultValue = null)
 {
     if (!$name) {
         return $_POST;
     } else {
         return parent::getPost($name, $defaultValue);
     }
 }
開發者ID:kentonquatman,項目名稱:portfolio,代碼行數:16,代碼來源:HttpRequestService.php


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