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


PHP WxPayUnifiedOrder::SetSpbill_create_ip方法代碼示例

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


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

示例1: unifiedOrder

 /**
  * 
  * 統一下單,WxPayUnifiedOrder中out_trade_no、body、total_fee、trade_type必填
  * appid、mchid、spbill_create_ip、nonce_str不需要填入
  * @param WxPayUnifiedOrder $inputObj
  * @param int $timeOut
  * @throws WxPayException
  * @return 成功時返回,其他拋異常
  */
 public function unifiedOrder(WxPayUnifiedOrder $inputObj, $timeOut = 6)
 {
     $url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
     //檢測必填參數
     if (!$inputObj->IsOut_trade_noSet()) {
         throw new WxPayException("缺少統一支付接口必填參數out_trade_no!");
     } else {
         if (!$inputObj->IsBodySet()) {
             throw new WxPayException("缺少統一支付接口必填參數body!");
         } else {
             if (!$inputObj->IsTotal_feeSet()) {
                 throw new WxPayException("缺少統一支付接口必填參數total_fee!");
             } else {
                 if (!$inputObj->IsTrade_typeSet()) {
                     throw new WxPayException("缺少統一支付接口必填參數trade_type!");
                 }
             }
         }
     }
     //關聯參數
     if ($inputObj->GetTrade_type() == "JSAPI" && !$inputObj->IsOpenidSet()) {
         throw new WxPayException("統一支付接口中,缺少必填參數openid!trade_type為JSAPI時,openid為必填參數!");
     }
     if ($inputObj->GetTrade_type() == "NATIVE" && !$inputObj->IsProduct_idSet()) {
         throw new WxPayException("統一支付接口中,缺少必填參數product_id!trade_type為JSAPI時,product_id為必填參數!");
     }
     //異步通知url未設置,則使用配置文件中的url
     if (!$inputObj->IsNotify_urlSet()) {
         $inputObj->SetNotify_url($this->wxPayConfig['NOTIFY_URL']);
         //異步通知url
     }
     $inputObj->SetAppid($this->wxPayConfig['APPID']);
     //公眾賬號ID
     $inputObj->SetMch_id($this->wxPayConfig['MCHID']);
     //商戶號
     try {
         $inputObj->SetSpbill_create_ip($_SERVER['REMOTE_ADDR']);
         //終端ip
     } catch (\Exception $e) {
         $inputObj->SetSpbill_create_ip("1.1.1.1");
     }
     $inputObj->SetNonce_str(self::getNonceStr());
     //隨機字符串
     //簽名
     $inputObj->SetSign();
     $xml = $inputObj->ToXml();
     $startTimeStamp = self::getMillisecond();
     //請求開始時間
     $response = $this->postXmlCurl($xml, $url, false, $timeOut);
     //		print_r($response);
     $result = WxPayResults::Init($response, $this->wxPayConfig);
     $this->reportCostTime($url, $startTimeStamp, $result);
     //上報請求花費時間
     return $result;
 }
開發者ID:fishlab,項目名稱:wechat-sdk-php,代碼行數:64,代碼來源:WxPay.Api.php

示例2: unifiedOrder

 /**
  *
  * 統一下單,WxPayUnifiedOrder中out_trade_no、body、total_fee、trade_type必填
  * appid、mchid、spbill_create_ip、nonce_str不需要填入
  * @param WxPayUnifiedOrder $inputObj
  * @param int $timeOut
  * @throws Exception
  * @return 成功時返回,其他拋異常
  */
 public static function unifiedOrder($inputObj, $timeOut = 6)
 {
     $url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
     //檢測必填參數
     if (!$inputObj->IsOut_trade_noSet()) {
         throw new Exception("缺少統一支付接口必填參數out_trade_no!");
     } else {
         if (!$inputObj->IsBodySet()) {
             throw new Exception("缺少統一支付接口必填參數body!");
         } else {
             if (!$inputObj->IsTotal_feeSet()) {
                 throw new Exception("缺少統一支付接口必填參數total_fee!");
             } else {
                 if (!$inputObj->IsTrade_typeSet()) {
                     throw new Exception("缺少統一支付接口必填參數trade_type!");
                 }
             }
         }
     }
     //關聯參數
     if ($inputObj->GetTrade_type() == "JSAPI" && !$inputObj->IsOpenidSet()) {
         throw new Exception("統一支付接口中,缺少必填參數openid!trade_type為JSAPI時,openid為必填參數!");
     }
     if ($inputObj->GetTrade_type() == "NATIVE" && !$inputObj->IsProduct_idSet()) {
         throw new Exception("統一支付接口中,缺少必填參數product_id!trade_type為NATIVE時,product_id為必填參數!");
     }
     //異步通知url未設置,則使用配置文件中的url
     if (!$inputObj->IsNotify_urlSet()) {
         $inputObj->SetNotify_url(Config::NOTIFY_URL);
         //異步通知url
     }
     $inputObj->SetAppid(Config::APPID);
     //公眾賬號ID
     $inputObj->SetMch_id(Config::MCHID);
     //商戶號
     if (!$inputObj->IsSpbill_create_ipSet()) {
         $inputObj->SetSpbill_create_ip($_SERVER['REMOTE_ADDR']);
         //終端ip
     }
     //$inputObj->SetSpbill_create_ip("1.1.1.1");
     $inputObj->SetNonce_str(self::getNonceStr());
     //隨機字符串
     //簽名
     $inputObj->SetSign();
     $xml = $inputObj->ToXml();
     $startTimeStamp = self::getMillisecond();
     //請求開始時間
     $response = self::postXmlCurl($xml, $url, false, $timeOut);
     $result = Results::Init($response);
     self::reportCostTime($url, $startTimeStamp, $result);
     //上報請求花費時間
     if ($result['return_code'] != 'SUCCESS') {
         throw new Exception($result['return_msg']);
     }
     if ($result['result_code'] != 'SUCCESS') {
         throw new Exception('err_code:' . $result['err_code'] . ';err_code_des:' . $result['err_code_des']);
     }
     return $result;
 }
開發者ID:ljimmy,項目名稱:pay,代碼行數:68,代碼來源:Api.php

示例3: unifiedOrder

 /**
  * 
  * 統一下單,WxPayUnifiedOrder中out_trade_no、body、total_fee、trade_type必填
  * appid、mchid、spbill_create_ip、nonce_str不需要填入
  * @param WxPayUnifiedOrder $inputObj
  * @param int $timeOut
  * @throws WxPayException
  * @return 成功時返回,其他拋異常
  */
 public static function unifiedOrder($inputObj, $timeOut = 6)
 {
     $url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
     $inputObj->SetAppid(APPID);
     //公眾賬號ID
     $inputObj->SetMch_id(MCHID);
     //商戶號
     $inputObj->SetSpbill_create_ip($_SERVER['REMOTE_ADDR']);
     //終端ip
     //$inputObj->SetSpbill_create_ip("1.1.1.1");
     $inputObj->SetNonce_str(self::getNonceStr());
     //隨機字符串
     //簽名
     $inputObj->SetSign();
     $xml = $inputObj->ToXml();
     $startTimeStamp = self::getMillisecond();
     //請求開始時間
     $response = self::postXmlCurl($xml, $url, false, $timeOut);
     $result = WxPayResults::Init($response);
     return $result;
 }
開發者ID:Alpha2016,項目名稱:wxpay,代碼行數:30,代碼來源:WxPay.Api.php

示例4: pay_get

 public function pay_get()
 {
     $order = I('get.order', '');
     $m = M('orders');
     // $map['from_member_id'] = $this->uid;
     $map['order_number'] = $order;
     // $map['status'] = 0;
     $info = $m->where($map)->find();
     if (empty($info)) {
         //未支付訂單不存在
         $this->error(5015);
     }
     $total = $info['total'] * 100;
     $describe = 'testname';
     require_once APP_PATH . "SDK/Payment/wechat/lib/WxPay.Api.php";
     $input = new \WxPayUnifiedOrder();
     //設置公眾賬號ID
     $input->SetAppid(\WxPayConfig::APPID);
     //設置商戶號
     $input->SetMch_id(\WxPayConfig::MCHID);
     //設置隨機字符串
     $input->SetNonce_str(\WxPayApi::getNonceStr());
     //設置商品描述
     $input->SetBody($describe);
     //設置商戶訂單號
     $input->SetOut_trade_no($info['order_number']);
     //設置總金額
     $input->SetTotal_fee($total);
     //設置終端IP
     $input->SetSpbill_create_ip(get_client_ip());
     //設置通知地址
     $input->SetNotify_url(U('Wxpay/callback@api'));
     //設置交易類型
     $input->SetTrade_type('APP');
     $order = \WxPayApi::unifiedOrder($input);
     $this->success($order);
 }
開發者ID:jkzleond,項目名稱:alhelp_api,代碼行數:37,代碼來源:WxpayController.class.php

示例5: unifiedOrder

 /**
  * 
  * 統一下單,WxPayUnifiedOrder中out_trade_no、body、total_fee、trade_type必填
  * appid、mchid、spbill_create_ip、nonce_str不需要填入
  * @param WxPayUnifiedOrder $inputObj
  * @param int $timeOut
  * @throws WxPayException
  * @return 成功時返回,其他拋異常
  */
 public static function unifiedOrder($inputObj, $timeOut = 6)
 {
     $url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
     //檢測必填參數
     if (!$inputObj->IsOut_trade_noSet()) {
         throw new WxPayException("缺少統一支付接口必填參數out_trade_no!");
     } else {
         if (!$inputObj->IsBodySet()) {
             throw new WxPayException("缺少統一支付接口必填參數body!");
         } else {
             if (!$inputObj->IsTotal_feeSet()) {
                 throw new WxPayException("缺少統一支付接口必填參數total_fee!");
             } else {
                 if (!$inputObj->IsTrade_typeSet()) {
                     throw new WxPayException("缺少統一支付接口必填參數trade_type!");
                 }
             }
         }
     }
     //關聯參數
     if ($inputObj->GetTrade_type() == "JSAPI" && !$inputObj->IsOpenidSet()) {
         throw new WxPayException("統一支付接口中,缺少必填參數openid!trade_type為JSAPI時,openid為必填參數!");
     }
     if ($inputObj->GetTrade_type() == "NATIVE" && !$inputObj->IsProduct_idSet()) {
         throw new WxPayException("統一支付接口中,缺少必填參數product_id!trade_type為JSAPI時,product_id為必填參數!");
     }
     //異步通知url未設置,則使用配置文件中的url
     if (!$inputObj->IsNotify_urlSet()) {
         $inputObj->SetNotify_url(WxPayConfig::NOTIFY_URL);
         //異步通知url
     }
     $inputObj->SetAppid(WxPayConfig::APPID);
     //公眾賬號ID
     $inputObj->SetMch_id(WxPayConfig::MCHID);
     //商戶號
     $inputObj->SetSpbill_create_ip($_SERVER['REMOTE_ADDR']);
     //終端ip
     //$inputObj->SetSpbill_create_ip("1.1.1.1");
     $inputObj->SetNonce_str(self::getNonceStr());
     //隨機字符串
     //簽名
     $inputObj->SetSign();
     $xml = $inputObj->ToXml();
     $startTimeStamp = self::getMillisecond();
     //請求開始時間
     $response = self::postXmlCurl($xml, $url, false, $timeOut);
     $result = WxPayResults::Init($response);
     // 統一下單接口返回正常的prepay_id,再按簽名規範重新生成簽名後,將數據傳輸給APP。
     // 參與簽名的字段名為appId,partnerId,prepayId,nonceStr,timeStamp,package。注意:package的值格式為Sign=WXPay
     $time_stamp = time();
     $pack = 'Sign=WXPay';
     //輸出參數列表
     $prePayParams = array();
     $prePayParams['appid'] = $result['appid'];
     $prePayParams['partnerid'] = $result['mch_id'];
     $prePayParams['prepayid'] = $result['prepay_id'];
     $prePayParams['noncestr'] = $result['nonce_str'];
     $prePayParams['package'] = $pack;
     $prePayParams['timestamp'] = $time_stamp;
     //echo json_encode($prePayParams);
     $result = WxPayResults::InitFromArray($prePayParams, true)->GetValues();
     self::reportCostTime($url, $startTimeStamp, $result);
     //上報請求花費時間
     return $result;
 }
開發者ID:leidong666,項目名稱:H5P.Server,代碼行數:74,代碼來源:WxPay.Api.php


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