WxPay.NativePay.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. /**
  3. *
  4. * example目录下为简单的支付样例,仅能用于搭建快速体验微信支付使用
  5. * 样例的作用仅限于指导如何使用sdk,在安全上面仅做了简单处理, 复制使用样例代码时请慎重
  6. * 请勿直接直接使用样例对外提供服务
  7. *
  8. **/
  9. require_once "WxPay.Api.php";
  10. /**
  11. *
  12. * 刷卡支付实现类
  13. * @author widyhu
  14. *
  15. */
  16. class NativePay
  17. {
  18. public function __construct($config)
  19. {
  20. $this->config = $config;
  21. }
  22. /**
  23. *
  24. * 生成扫描支付URL,模式一
  25. * @param BizPayUrlInput $bizUrlInfo
  26. */
  27. public function GetPrePayUrl($productId)
  28. {
  29. $biz = new WxPayBizPayUrl();
  30. $biz->SetProduct_id($productId);
  31. try{
  32. $values = WxpayApi::bizpayurl($this->config, $biz);
  33. } catch(Exception $e) {
  34. Log::ERROR(json_encode($e));
  35. }
  36. $url = "weixin://wxpay/bizpayurl?" . $this->ToUrlParams($values);
  37. return $url;
  38. }
  39. /**
  40. *
  41. * 参数数组转换为url参数
  42. * @param array $urlObj
  43. */
  44. private function ToUrlParams($urlObj)
  45. {
  46. $buff = "";
  47. foreach ($urlObj as $k => $v)
  48. {
  49. $buff .= $k . "=" . $v . "&";
  50. }
  51. $buff = trim($buff, "&");
  52. return $buff;
  53. }
  54. /**
  55. *
  56. * 生成直接支付url,支付url有效期为2小时,模式二
  57. * @param UnifiedOrderInput $input
  58. */
  59. public function GetPayUrl($input)
  60. {
  61. if($input->GetTrade_type() == "NATIVE")
  62. {
  63. try{
  64. $result = WxPayApi::unifiedOrder($this->config, $input);
  65. return $result;
  66. } catch(Exception $e) {
  67. Log::ERROR(json_encode($e));
  68. }
  69. }
  70. return false;
  71. }
  72. }