WxPay.NativePay.php 977 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. require_once "../lib/WxPay.Api.php";
  3. /**
  4. *
  5. * 刷卡支付实现类
  6. * @author widyhu
  7. *
  8. */
  9. class NativePay
  10. {
  11. /**
  12. *
  13. * 生成扫描支付URL,模式一
  14. * @param BizPayUrlInput $bizUrlInfo
  15. */
  16. public function GetPrePayUrl($productId)
  17. {
  18. $biz = new WxPayBizPayUrl();
  19. $biz->SetProduct_id($productId);
  20. $values = WxpayApi::bizpayurl($biz);
  21. $url = "weixin://wxpay/bizpayurl?" . $this->ToUrlParams($values);
  22. return $url;
  23. }
  24. /**
  25. *
  26. * 参数数组转换为url参数
  27. * @param array $urlObj
  28. */
  29. private function ToUrlParams($urlObj)
  30. {
  31. $buff = "";
  32. foreach ($urlObj as $k => $v)
  33. {
  34. $buff .= $k . "=" . $v . "&";
  35. }
  36. $buff = trim($buff, "&");
  37. return $buff;
  38. }
  39. /**
  40. *
  41. * 生成直接支付url,支付url有效期为2小时,模式二
  42. * @param UnifiedOrderInput $input
  43. */
  44. public function GetPayUrl($input)
  45. {
  46. if($input->GetTrade_type() == "NATIVE")
  47. {
  48. $result = WxPayApi::unifiedOrder($input);
  49. return $result;
  50. }
  51. }
  52. }