Notify.php 453 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\library\wechat\WxPay;
  4. /**
  5. * 支付成功异步通知接口
  6. * Class Notify
  7. * @package app\api\controller
  8. */
  9. class Notify
  10. {
  11. /**
  12. * 支付成功异步通知
  13. * @throws \think\Exception
  14. * @throws \think\exception\DbException
  15. */
  16. public function order()
  17. {
  18. // 微信支付组件:验证异步通知
  19. $WxPay = new WxPay();
  20. $WxPay->notify();
  21. }
  22. }