本文整理匯總了PHP中WxPayUnifiedOrder::IsSpbill_create_ipSet方法的典型用法代碼示例。如果您正苦於以下問題:PHP WxPayUnifiedOrder::IsSpbill_create_ipSet方法的具體用法?PHP WxPayUnifiedOrder::IsSpbill_create_ipSet怎麽用?PHP WxPayUnifiedOrder::IsSpbill_create_ipSet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類WxPayUnifiedOrder
的用法示例。
在下文中一共展示了WxPayUnifiedOrder::IsSpbill_create_ipSet方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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 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;
}