WxPay.Api.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  1. <?php
  2. namespace App\Servers\Weixin;
  3. /**
  4. *
  5. * 接口访问类,包含所有微信支付API列表的封装,类中方法为static方法,
  6. * 每个接口有默认超时时间(除提交被扫支付为10s,上报超时时间为1s外,其他均为6s)
  7. * @author widyhu
  8. *
  9. */
  10. class WxPayApi
  11. {
  12. /**
  13. *
  14. * 统一下单,WxPayUnifiedOrder中out_trade_no、body、total_fee、trade_type必填
  15. * appid、mchid、spbill_create_ip、nonce_str不需要填入
  16. * @param WxPayUnifiedOrder $inputObj
  17. * @param int $timeOut
  18. * @throws WxPayException
  19. * @return 成功时返回,其他抛异常
  20. */
  21. public static function unifiedOrder($inputObj, $timeOut = 6)
  22. {
  23. $url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
  24. //检测必填参数
  25. if(!$inputObj->IsOut_trade_noSet()) {
  26. throw new WxPayException("缺少统一支付接口必填参数out_trade_no!");
  27. }else if(!$inputObj->IsBodySet()){
  28. throw new WxPayException("缺少统一支付接口必填参数body!");
  29. }else if(!$inputObj->IsTotal_feeSet()) {
  30. throw new WxPayException("缺少统一支付接口必填参数total_fee!");
  31. }else if(!$inputObj->IsTrade_typeSet()) {
  32. throw new WxPayException("缺少统一支付接口必填参数trade_type!");
  33. }
  34. //关联参数
  35. if($inputObj->GetTrade_type() == "JSAPI" && !$inputObj->IsOpenidSet()){
  36. throw new WxPayException("统一支付接口中,缺少必填参数openid!trade_type为JSAPI时,openid为必填参数!");
  37. }
  38. if($inputObj->GetTrade_type() == "NATIVE" && !$inputObj->IsProduct_idSet()){
  39. throw new WxPayException("统一支付接口中,缺少必填参数product_id!trade_type为JSAPI时,product_id为必填参数!");
  40. }
  41. //异步通知url未设置,则使用配置文件中的url
  42. if(!$inputObj->IsNotify_urlSet()){
  43. $inputObj->SetNotify_url($GLOBALS['notify_url']);//异步通知url
  44. }
  45. $inputObj->SetAppid($GLOBALS['appId']);//公众账号ID
  46. $inputObj->SetMch_id($GLOBALS['mchId']);//商户号
  47. $inputObj->SetSpbill_create_ip($_SERVER['REMOTE_ADDR']);//终端ip
  48. //$inputObj->SetSpbill_create_ip("1.1.1.1");
  49. $inputObj->SetNonce_str(self::getNonceStr());//随机字符串
  50. //签名
  51. $inputObj->SetSign();
  52. $xml = $inputObj->ToXml();
  53. $startTimeStamp = self::getMillisecond();//请求开始时间
  54. $response = self::postXmlCurl($xml, $url, false, $timeOut);
  55. $result = WxPayResults::Init($response);
  56. self::reportCostTime($url, $startTimeStamp, $result);//上报请求花费时间
  57. return $result;
  58. }
  59. /**
  60. *
  61. * 查询订单,WxPayOrderQuery中out_trade_no、transaction_id至少填一个
  62. * appid、mchid、spbill_create_ip、nonce_str不需要填入
  63. * @param WxPayOrderQuery $inputObj
  64. * @param int $timeOut
  65. * @throws WxPayException
  66. * @return 成功时返回,其他抛异常
  67. */
  68. public static function orderQuery($inputObj, $timeOut = 6)
  69. {
  70. $url = "https://api.mch.weixin.qq.com/pay/orderquery";
  71. //检测必填参数
  72. if(!$inputObj->IsOut_trade_noSet() && !$inputObj->IsTransaction_idSet()) {
  73. throw new WxPayException("订单查询接口中,out_trade_no、transaction_id至少填一个!");
  74. }
  75. $inputObj->SetAppid($GLOBALS['appId']);//公众账号ID
  76. $inputObj->SetMch_id($GLOBALS['mchId']);//商户号
  77. $inputObj->SetNonce_str(self::getNonceStr());//随机字符串
  78. $inputObj->SetSign();//签名
  79. $xml = $inputObj->ToXml();
  80. $startTimeStamp = self::getMillisecond();//请求开始时间
  81. $response = self::postXmlCurl($xml, $url, false, $timeOut);
  82. $result = WxPayResults::Init($response);
  83. self::reportCostTime($url, $startTimeStamp, $result);//上报请求花费时间
  84. return $result;
  85. }
  86. /**
  87. *
  88. * 关闭订单,WxPayCloseOrder中out_trade_no必填
  89. * appid、mchid、spbill_create_ip、nonce_str不需要填入
  90. * @param WxPayCloseOrder $inputObj
  91. * @param int $timeOut
  92. * @throws WxPayException
  93. * @return 成功时返回,其他抛异常
  94. */
  95. public static function closeOrder($inputObj, $timeOut = 6)
  96. {
  97. $url = "https://api.mch.weixin.qq.com/pay/closeorder";
  98. //检测必填参数
  99. if(!$inputObj->IsOut_trade_noSet()) {
  100. throw new WxPayException("订单查询接口中,out_trade_no必填!");
  101. }
  102. $inputObj->SetAppid($GLOBALS['appId']);//公众账号ID
  103. $inputObj->SetMch_id($GLOBALS['mchId']);//商户号
  104. $inputObj->SetNonce_str(self::getNonceStr());//随机字符串
  105. $inputObj->SetSign();//签名
  106. $xml = $inputObj->ToXml();
  107. $startTimeStamp = self::getMillisecond();//请求开始时间
  108. $response = self::postXmlCurl($xml, $url, false, $timeOut);
  109. $result = WxPayResults::Init($response);
  110. self::reportCostTime($url, $startTimeStamp, $result);//上报请求花费时间
  111. return $result;
  112. }
  113. /**
  114. *
  115. * 申请退款,WxPayRefund中out_trade_no、transaction_id至少填一个且
  116. * out_refund_no、total_fee、refund_fee、op_user_id为必填参数
  117. * appid、mchid、spbill_create_ip、nonce_str不需要填入
  118. * @param WxPayRefund $inputObj
  119. * @param int $timeOut
  120. * @throws WxPayException
  121. * @return 成功时返回,其他抛异常
  122. */
  123. public static function refund($inputObj, $timeOut = 6)
  124. {
  125. $url = "https://api.mch.weixin.qq.com/secapi/pay/refund";
  126. //检测必填参数
  127. if(!$inputObj->IsOut_trade_noSet() && !$inputObj->IsTransaction_idSet()) {
  128. throw new WxPayException("退款申请接口中,out_trade_no、transaction_id至少填一个!");
  129. }else if(!$inputObj->IsOut_refund_noSet()){
  130. throw new WxPayException("退款申请接口中,缺少必填参数out_refund_no!");
  131. }else if(!$inputObj->IsTotal_feeSet()){
  132. throw new WxPayException("退款申请接口中,缺少必填参数total_fee!");
  133. }else if(!$inputObj->IsRefund_feeSet()){
  134. throw new WxPayException("退款申请接口中,缺少必填参数refund_fee!");
  135. }else if(!$inputObj->IsOp_user_idSet()){
  136. throw new WxPayException("退款申请接口中,缺少必填参数op_user_id!");
  137. }
  138. $inputObj->SetAppid($GLOBALS['appId']);//公众账号ID
  139. $inputObj->SetMch_id($GLOBALS['mchId']);//商户号
  140. $inputObj->SetNonce_str(self::getNonceStr());//随机字符串
  141. $inputObj->SetSign();//签名
  142. $xml = $inputObj->ToXml();
  143. $startTimeStamp = self::getMillisecond();//请求开始时间
  144. $response = self::postXmlCurl($xml, $url, true, $timeOut);
  145. $result = WxPayResults::Init($response);
  146. self::reportCostTime($url, $startTimeStamp, $result);//上报请求花费时间
  147. return $result;
  148. }
  149. /**
  150. *
  151. * 查询退款
  152. * 提交退款申请后,通过调用该接口查询退款状态。退款有一定延时,
  153. * 用零钱支付的退款20分钟内到账,银行卡支付的退款3个工作日后重新查询退款状态。
  154. * WxPayRefundQuery中out_refund_no、out_trade_no、transaction_id、refund_id四个参数必填一个
  155. * appid、mchid、spbill_create_ip、nonce_str不需要填入
  156. * @param WxPayRefundQuery $inputObj
  157. * @param int $timeOut
  158. * @throws WxPayException
  159. * @return 成功时返回,其他抛异常
  160. */
  161. public static function refundQuery($inputObj, $timeOut = 6)
  162. {
  163. $url = "https://api.mch.weixin.qq.com/pay/refundquery";
  164. //检测必填参数
  165. if(!$inputObj->IsOut_refund_noSet() &&
  166. !$inputObj->IsOut_trade_noSet() &&
  167. !$inputObj->IsTransaction_idSet() &&
  168. !$inputObj->IsRefund_idSet()) {
  169. throw new WxPayException("退款查询接口中,out_refund_no、out_trade_no、transaction_id、refund_id四个参数必填一个!");
  170. }
  171. $inputObj->SetAppid($GLOBALS['appId']);//公众账号ID
  172. $inputObj->SetMch_id($GLOBALS['mchId']);//商户号
  173. $inputObj->SetNonce_str(self::getNonceStr());//随机字符串
  174. $inputObj->SetSign();//签名
  175. $xml = $inputObj->ToXml();
  176. $startTimeStamp = self::getMillisecond();//请求开始时间
  177. $response = self::postXmlCurl($xml, $url, false, $timeOut);
  178. $result = WxPayResults::Init($response);
  179. self::reportCostTime($url, $startTimeStamp, $result);//上报请求花费时间
  180. return $result;
  181. }
  182. /**
  183. * 下载对账单,WxPayDownloadBill中bill_date为必填参数
  184. * appid、mchid、spbill_create_ip、nonce_str不需要填入
  185. * @param WxPayDownloadBill $inputObj
  186. * @param int $timeOut
  187. * @throws WxPayException
  188. * @return 成功时返回,其他抛异常
  189. */
  190. public static function downloadBill($inputObj, $timeOut = 6)
  191. {
  192. $url = "https://api.mch.weixin.qq.com/pay/downloadbill";
  193. //检测必填参数
  194. if(!$inputObj->IsBill_dateSet()) {
  195. throw new WxPayException("对账单接口中,缺少必填参数bill_date!");
  196. }
  197. $inputObj->SetAppid($GLOBALS['appId']);//公众账号ID
  198. $inputObj->SetMch_id($GLOBALS['mchId']);//商户号
  199. $inputObj->SetNonce_str(self::getNonceStr());//随机字符串
  200. $inputObj->SetSign();//签名
  201. $xml = $inputObj->ToXml();
  202. $response = self::postXmlCurl($xml, $url, false, $timeOut);
  203. if(substr($response, 0 , 5) == "<xml>"){
  204. return "";
  205. }
  206. return $response;
  207. }
  208. /**
  209. * 提交被扫支付API
  210. * 收银员使用扫码设备读取微信用户刷卡授权码以后,二维码或条码信息传送至商户收银台,
  211. * 由商户收银台或者商户后台调用该接口发起支付。
  212. * WxPayWxPayMicroPay中body、out_trade_no、total_fee、auth_code参数必填
  213. * appid、mchid、spbill_create_ip、nonce_str不需要填入
  214. * @param WxPayWxPayMicroPay $inputObj
  215. * @param int $timeOut
  216. */
  217. public static function micropay($inputObj, $timeOut = 10)
  218. {
  219. $url = "https://api.mch.weixin.qq.com/pay/micropay";
  220. //检测必填参数
  221. if(!$inputObj->IsBodySet()) {
  222. throw new WxPayException("提交被扫支付API接口中,缺少必填参数body!");
  223. } else if(!$inputObj->IsOut_trade_noSet()) {
  224. throw new WxPayException("提交被扫支付API接口中,缺少必填参数out_trade_no!");
  225. } else if(!$inputObj->IsTotal_feeSet()) {
  226. throw new WxPayException("提交被扫支付API接口中,缺少必填参数total_fee!");
  227. } else if(!$inputObj->IsAuth_codeSet()) {
  228. throw new WxPayException("提交被扫支付API接口中,缺少必填参数auth_code!");
  229. }
  230. $inputObj->SetSpbill_create_ip($_SERVER['REMOTE_ADDR']);//终端ip
  231. $inputObj->SetAppid($GLOBALS['appId']);//公众账号ID
  232. $inputObj->SetMch_id($GLOBALS['mchId']);//商户号
  233. $inputObj->SetNonce_str(self::getNonceStr());//随机字符串
  234. $inputObj->SetSign();//签名
  235. $xml = $inputObj->ToXml();
  236. $startTimeStamp = self::getMillisecond();//请求开始时间
  237. $response = self::postXmlCurl($xml, $url, false, $timeOut);
  238. $result = WxPayResults::Init($response);
  239. self::reportCostTime($url, $startTimeStamp, $result);//上报请求花费时间
  240. return $result;
  241. }
  242. /**
  243. *
  244. * 撤销订单API接口,WxPayReverse中参数out_trade_no和transaction_id必须填写一个
  245. * appid、mchid、spbill_create_ip、nonce_str不需要填入
  246. * @param WxPayReverse $inputObj
  247. * @param int $timeOut
  248. * @throws WxPayException
  249. */
  250. public static function reverse($inputObj, $timeOut = 6)
  251. {
  252. $url = "https://api.mch.weixin.qq.com/secapi/pay/reverse";
  253. //检测必填参数
  254. if(!$inputObj->IsOut_trade_noSet() && !$inputObj->IsTransaction_idSet()) {
  255. throw new WxPayException("撤销订单API接口中,参数out_trade_no和transaction_id必须填写一个!");
  256. }
  257. $inputObj->SetAppid($GLOBALS['appId']);//公众账号ID
  258. $inputObj->SetMch_id($GLOBALS['mchId']);//商户号
  259. $inputObj->SetNonce_str(self::getNonceStr());//随机字符串
  260. $inputObj->SetSign();//签名
  261. $xml = $inputObj->ToXml();
  262. $startTimeStamp = self::getMillisecond();//请求开始时间
  263. $response = self::postXmlCurl($xml, $url, true, $timeOut);
  264. $result = WxPayResults::Init($response);
  265. self::reportCostTime($url, $startTimeStamp, $result);//上报请求花费时间
  266. return $result;
  267. }
  268. /**
  269. *
  270. * 测速上报,该方法内部封装在report中,使用时请注意异常流程
  271. * WxPayReport中interface_url、return_code、result_code、user_ip、execute_time_必填
  272. * appid、mchid、spbill_create_ip、nonce_str不需要填入
  273. * @param WxPayReport $inputObj
  274. * @param int $timeOut
  275. * @throws WxPayException
  276. * @return 成功时返回,其他抛异常
  277. */
  278. public static function report($inputObj, $timeOut = 1)
  279. {
  280. $url = "https://api.mch.weixin.qq.com/payitil/report";
  281. //检测必填参数
  282. if(!$inputObj->IsInterface_urlSet()) {
  283. throw new WxPayException("接口URL,缺少必填参数interface_url!");
  284. } if(!$inputObj->IsReturn_codeSet()) {
  285. throw new WxPayException("返回状态码,缺少必填参数return_code!");
  286. } if(!$inputObj->IsResult_codeSet()) {
  287. throw new WxPayException("业务结果,缺少必填参数result_code!");
  288. } if(!$inputObj->IsUser_ipSet()) {
  289. throw new WxPayException("访问接口IP,缺少必填参数user_ip!");
  290. } if(!$inputObj->IsExecute_time_Set()) {
  291. throw new WxPayException("接口耗时,缺少必填参数execute_time_!");
  292. }
  293. $inputObj->SetAppid($GLOBALS['appId']);//公众账号ID
  294. $inputObj->SetMch_id($GLOBALS['mchId']);//商户号
  295. $inputObj->SetUser_ip($_SERVER['REMOTE_ADDR']);//终端ip
  296. $inputObj->SetTime(date("YmdHis"));//商户上报时间
  297. $inputObj->SetNonce_str(self::getNonceStr());//随机字符串
  298. $inputObj->SetSign();//签名
  299. $xml = $inputObj->ToXml();
  300. $startTimeStamp = self::getMillisecond();//请求开始时间
  301. $response = self::postXmlCurl($xml, $url, false, $timeOut);
  302. return $response;
  303. }
  304. /**
  305. *
  306. * 生成二维码规则,模式一生成支付二维码
  307. * appid、mchid、spbill_create_ip、nonce_str不需要填入
  308. * @param WxPayBizPayUrl $inputObj
  309. * @param int $timeOut
  310. * @throws WxPayException
  311. * @return 成功时返回,其他抛异常
  312. */
  313. public static function bizpayurl($inputObj, $timeOut = 6)
  314. {
  315. if(!$inputObj->IsProduct_idSet()){
  316. throw new WxPayException("生成二维码,缺少必填参数product_id!");
  317. }
  318. $inputObj->SetAppid($GLOBALS['appId']);//公众账号ID
  319. $inputObj->SetMch_id($GLOBALS['mchId']);//商户号
  320. $inputObj->SetTime_stamp(time());//时间戳
  321. $inputObj->SetNonce_str(self::getNonceStr());//随机字符串
  322. $inputObj->SetSign();//签名
  323. return $inputObj->GetValues();
  324. }
  325. /**
  326. *
  327. * 转换短链接
  328. * 该接口主要用于扫码原生支付模式一中的二维码链接转成短链接(weixin://wxpay/s/XXXXXX),
  329. * 减小二维码数据量,提升扫描速度和精确度。
  330. * appid、mchid、spbill_create_ip、nonce_str不需要填入
  331. * @param WxPayShortUrl $inputObj
  332. * @param int $timeOut
  333. * @throws WxPayException
  334. * @return 成功时返回,其他抛异常
  335. */
  336. public static function shorturl($inputObj, $timeOut = 6)
  337. {
  338. $url = "https://api.mch.weixin.qq.com/tools/shorturl";
  339. //检测必填参数
  340. if(!$inputObj->IsLong_urlSet()) {
  341. throw new WxPayException("需要转换的URL,签名用原串,传输需URL encode!");
  342. }
  343. $inputObj->SetAppid($GLOBALS['appId']);//公众账号ID
  344. $inputObj->SetMch_id($GLOBALS['mchId']);//商户号
  345. $inputObj->SetNonce_str(self::getNonceStr());//随机字符串
  346. $inputObj->SetSign();//签名
  347. $xml = $inputObj->ToXml();
  348. $startTimeStamp = self::getMillisecond();//请求开始时间
  349. $response = self::postXmlCurl($xml, $url, false, $timeOut);
  350. $result = WxPayResults::Init($response);
  351. self::reportCostTime($url, $startTimeStamp, $result);//上报请求花费时间
  352. return $result;
  353. }
  354. /**
  355. *
  356. * 支付结果通用通知
  357. * @param function $callback
  358. * 直接回调函数使用方法: notify(you_function);
  359. * 回调类成员函数方法:notify(array($this, you_function));
  360. * $callback 原型为:function function_name($data){}
  361. */
  362. public static function notify($callback, &$msg)
  363. {
  364. //获取通知的数据
  365. $xml = $GLOBALS['HTTP_RAW_POST_DATA'];
  366. //如果返回成功则验证签名
  367. try {
  368. $result = WxPayResults::Init($xml);
  369. } catch (WxPayException $e){
  370. $msg = $e->errorMessage();
  371. return false;
  372. }
  373. return call_user_func($callback, $result);
  374. }
  375. /**
  376. *
  377. * 产生随机字符串,不长于32位
  378. * @param int $length
  379. * @return 产生的随机字符串
  380. */
  381. public static function getNonceStr($length = 32)
  382. {
  383. $chars = "abcdefghijklmnopqrstuvwxyz0123456789";
  384. $str ="";
  385. for ( $i = 0; $i < $length; $i++ ) {
  386. $str .= substr($chars, mt_rand(0, strlen($chars)-1), 1);
  387. }
  388. return $str;
  389. }
  390. /**
  391. * 直接输出xml
  392. * @param string $xml
  393. */
  394. public static function replyNotify($xml)
  395. {
  396. echo $xml;
  397. }
  398. /**
  399. *
  400. * 上报数据, 上报的时候将屏蔽所有异常流程
  401. * @param string $usrl
  402. * @param int $startTimeStamp
  403. * @param array $data
  404. */
  405. private static function reportCostTime($url, $startTimeStamp, $data)
  406. {
  407. //如果不需要上报数据
  408. //如果仅失败上报
  409. if(array_key_exists("return_code", $data) &&
  410. $data["return_code"] == "SUCCESS" &&
  411. array_key_exists("result_code", $data) &&
  412. $data["result_code"] == "SUCCESS")
  413. {
  414. return;
  415. }
  416. //上报逻辑
  417. $endTimeStamp = self::getMillisecond();
  418. $objInput = new WxPayReport();
  419. $objInput->SetInterface_url($url);
  420. $objInput->SetExecute_time_($endTimeStamp - $startTimeStamp);
  421. //返回状态码
  422. if(array_key_exists("return_code", $data)){
  423. $objInput->SetReturn_code($data["return_code"]);
  424. }
  425. //返回信息
  426. if(array_key_exists("return_msg", $data)){
  427. $objInput->SetReturn_msg($data["return_msg"]);
  428. }
  429. //业务结果
  430. if(array_key_exists("result_code", $data)){
  431. $objInput->SetResult_code($data["result_code"]);
  432. }
  433. //错误代码
  434. if(array_key_exists("err_code", $data)){
  435. $objInput->SetErr_code($data["err_code"]);
  436. }
  437. //错误代码描述
  438. if(array_key_exists("err_code_des", $data)){
  439. $objInput->SetErr_code_des($data["err_code_des"]);
  440. }
  441. //商户订单号
  442. if(array_key_exists("out_trade_no", $data)){
  443. $objInput->SetOut_trade_no($data["out_trade_no"]);
  444. }
  445. //设备号
  446. if(array_key_exists("device_info", $data)){
  447. $objInput->SetDevice_info($data["device_info"]);
  448. }
  449. try{
  450. self::report($objInput);
  451. } catch (WxPayException $e){
  452. //不做任何处理
  453. }
  454. }
  455. /**
  456. * 以post方式提交xml到对应的接口url
  457. *
  458. * @param string $xml 需要post的xml数据
  459. * @param string $url url
  460. * @param bool $useCert 是否需要证书,默认不需要
  461. * @param int $second url执行超时时间,默认30s
  462. * @throws WxPayException
  463. */
  464. private static function postXmlCurl($xml, $url, $useCert = false, $second = 30)
  465. {
  466. $ch = curl_init();
  467. //设置超时
  468. curl_setopt($ch, CURLOPT_TIMEOUT, $second);
  469. //如果有配置代理这里就设置代理
  470. curl_setopt($ch,CURLOPT_URL, $url);
  471. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,false);
  472. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,false);
  473. //设置header
  474. curl_setopt($ch, CURLOPT_HEADER, FALSE);
  475. //要求结果为字符串且输出到屏幕上
  476. curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
  477. if($useCert == true){
  478. //设置证书
  479. //使用证书:cert 与 key 分别属于两个.pem文件
  480. curl_setopt($ch,CURLOPT_SSLCERTTYPE,'PEM');
  481. //curl_setopt($ch,CURLOPT_SSLCERT, WxPayConfig::SSLCERT_PATH);
  482. curl_setopt($ch,CURLOPT_SSLKEYTYPE,'PEM');
  483. //curl_setopt($ch,CURLOPT_SSLKEY, WxPayConfig::SSLKEY_PATH);
  484. }
  485. //post提交方式
  486. curl_setopt($ch, CURLOPT_POST, TRUE);
  487. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
  488. //运行curl
  489. $data = curl_exec($ch);
  490. //返回结果
  491. if($data){
  492. curl_close($ch);
  493. return $data;
  494. } else {
  495. $error = curl_errno($ch);
  496. curl_close($ch);
  497. throw new WxPayException("curl出错,错误码:$error");
  498. }
  499. }
  500. /**
  501. * 获取毫秒级别的时间戳
  502. */
  503. private static function getMillisecond()
  504. {
  505. //获取毫秒的时间戳
  506. $time = explode ( " ", microtime () );
  507. $time = $time[1] . ($time[0] * 1000);
  508. $time2 = explode( ".", $time );
  509. $time = $time2[0];
  510. return $time;
  511. }
  512. }