AlipayNotify.php 451 B

123456789101112131415161718192021
  1. <?php
  2. namespace common\expand\alipay\notify;
  3. /**
  4. * 支付宝通知
  5. */
  6. class AlipayNotify
  7. {
  8. public function __construct()
  9. {
  10. }
  11. public function execute()
  12. {
  13. // 通过method确认执行哪个对象
  14. $method = '';
  15. // 命名空间的问题
  16. // 记录每一个事件? 在里面写入需要执行的对象? - 由事件ID作为幂等性? 学习目前支付的方式,使用sql进行记录
  17. }
  18. }