本文整理汇总了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;
}