本文整理匯總了PHP中WxPayUnifiedOrder::IsProduct_idSet方法的典型用法代碼示例。如果您正苦於以下問題:PHP WxPayUnifiedOrder::IsProduct_idSet方法的具體用法?PHP WxPayUnifiedOrder::IsProduct_idSet怎麽用?PHP WxPayUnifiedOrder::IsProduct_idSet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類WxPayUnifiedOrder
的用法示例。
在下文中一共展示了WxPayUnifiedOrder::IsProduct_idSet方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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 static function unifiedOrder($inputObj, $timeOut = 30)
{
$url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
// 檢測必填參數
if (!$inputObj->IsAppidSet()) {
throw new WxPayException('缺少公眾號APPID!');
} elseif (!$inputObj->IsMch_idSet()) {
throw new WxPayException('缺少商戶號!');
} elseif (!$inputObj->IsOut_trade_noSet()) {
throw new WxPayException("缺少統一支付接口必填參數out_trade_no!");
} elseif (!$inputObj->IsBodySet()) {
throw new WxPayException("缺少統一支付接口必填參數body!");
} elseif (!$inputObj->IsTotal_feeSet()) {
throw new WxPayException("缺少統一支付接口必填參數total_fee!");
} elseif (!$inputObj->IsTrade_typeSet()) {
throw new WxPayException("缺少統一支付接口必填參數trade_type!");
}
// 關聯參數
if ($inputObj->GetTrade_type() == "JSAPI" && !$inputObj->IsOpenidSet() && !$inputObj->IsSub_openidSet()) {
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為必填參數!");
}
// 簽名
$inputObj->SetSign();
$xml = $inputObj->ToXml();
$startTimeStamp = self::getMillisecond();
// 請求開始時間
$response = self::postXmlCurl($xml, $url, false, $timeOut);
$result = WxPayResults::Init($response, $inputObj->wx_config);
self::reportCostTime($url, $startTimeStamp, $result);
// 上報請求花費時間
return $result;
}
示例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;
}
示例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 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;
}
示例4: 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;
}