本文整理匯總了PHP中WxPayApi::mchid方法的典型用法代碼示例。如果您正苦於以下問題:PHP WxPayApi::mchid方法的具體用法?PHP WxPayApi::mchid怎麽用?PHP WxPayApi::mchid使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類WxPayApi
的用法示例。
在下文中一共展示了WxPayApi::mchid方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: shorturl
/**
*
* 轉換短鏈接
* 該接口主要用於掃碼原生支付模式一中的二維碼鏈接轉成短鏈接(weixin://wxpay/s/XXXXXX),
* 減小二維碼數據量,提升掃描速度和精確度。
* @param WxPayShortUrl $inputObj
* @param int $timeOut
* @throws WxPayException
* @return 成功時返回,其他拋異常
*/
public static function shorturl($inputObj, $timeOut = 6)
{
$payments = session('paymentinfo');
self::$appid = $payments['wxappid'];
self::$mchid = $payments['wxmchid'];
$url = "https://api.mch.weixin.qq.com/tools/shorturl";
//檢測必填參數
if (!$inputObj->IsLong_urlSet()) {
throw new WxPayException("需要轉換的URL,簽名用原串,傳輸需URL encode!");
}
$inputObj->SetAppid(self::$appid);
//公眾賬號ID
$inputObj->SetMch_id(self::$mchid);
//商戶號
$inputObj->SetNonce_str(self::getNonceStr());
//隨機字符串
$inputObj->SetSign();
//簽名
$xml = $inputObj->ToXml();
$startTimeStamp = self::getMillisecond();
//請求開始時間
$response = self::postXmlCurl($xml, $url, false, $timeOut);
$result = WxPayResults::Init($response);
self::reportCostTime($url, $startTimeStamp, $result);
//上報請求花費時間
return $result;
}