payment.php 771 B

1234567891011121314151617181920212223242526
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Fanwe 方维直播系统
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2011 http://www.fanwe.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: 云淡风轻(1956838968@qq.com)
  8. // +----------------------------------------------------------------------
  9. interface payment{
  10. /**
  11. * 获取支付代码或提示信息
  12. * @param integer $payment_log_id 支付单号ID
  13. */
  14. function get_payment_code($payment_notice_id);
  15. //响应支付
  16. function response($request);
  17. //响应通知
  18. function notify($request);
  19. //获取接口的显示
  20. function get_display_code();
  21. }
  22. ?>