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


PHP Input::root方法代碼示例

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


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

示例1: anyWxPay

 public function anyWxPay()
 {
     if (Input::has('user_id') && Input::has('out_trade_no') && Input::has('goods_name') && Input::has('total_fee')) {
         $outTradeNo = Input::get('out_trade_no');
         $goodsName = Input::get('goods_name');
         if (Input::get('total_fee') <= 1) {
             $totalFee = 100;
         } else {
             $totalFee = (int) Input::get('total_fee') * 100;
         }
     } else {
         Log::error(var_export('參數錯誤', true), array(__CLASS__));
         return Response::json($this->response('10005'));
     }
     //②、統一下單   請求微信預下單
     $input = new WxPayUnifiedOrder();
     $input->SetBody($goodsName);
     $input->SetOut_trade_no($outTradeNo);
     $input->SetTotal_fee($totalFee);
     $input->SetTime_start(date("YmdHis"));
     $input->SetTime_expire(date("YmdHis", time() + 7200));
     $input->SetGoods_tag("test_goods");
     $input->SetNotify_url(Input::root() . "/callback/weixin/callback");
     $input->SetTrade_type("APP");
     //瀏覽器測試記得注釋掉   $inputObj->SetSpbill_create_ip("1.1.1.1");
     $order = WxPayApi::unifiedOrder($input);
     if (array_key_exists('err_code', $order)) {
         return Response::json($this->response('0', $order['err_code'], $order['err_code_des']));
     }
     if ($order['return_code'] == 'SUCCESS') {
         $timestamp = time();
         //參與簽名的字段 無需修改  預支付後的返回值
         $arr = array();
         $arr['appid'] = trim(WxPayConfig::APPID);
         $arr['partnerid'] = trim(WxPayConfig::MCHID);
         $arr['prepayid'] = $order['prepay_id'];
         $arr['package'] = 'Sign=WXPay';
         $arr['noncestr'] = $order['nonce_str'];
         $arr['timestamp'] = $timestamp;
         $obj = new WxPayDataBase();
         $obj->SetValues($arr);
         $sign = $obj->SetSign();
         //返回給APP數據
         $data = array();
         $data['return_code'] = $order['return_code'];
         $data['return_msg'] = $order['return_msg'];
         $data['prepay_id'] = $order['prepay_id'];
         $data['trade_type'] = $order['trade_type'];
         $data['nonce_str'] = $order['nonce_str'];
         $data['timestamp'] = $timestamp;
         $data['sign'] = $sign;
         Log::error(var_export($data, true), array(__CLASS__));
         return Response::json($this->response('1', '預訂單成功', $data));
     } else {
         Log::error(var_export('微信回調錯誤', true), array(__CLASS__));
         return Response::json($this->response('0'));
     }
 }
開發者ID:breeze323136,項目名稱:laravel,代碼行數:58,代碼來源:WeixinapiController.php


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