当前位置: 首页>>代码示例>>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;未经允许,请勿转载。