| 1234567891011121314151617181920212223242526 |
- <?php
- // +----------------------------------------------------------------------
- // | Fanwe 方维直播系统
- // +----------------------------------------------------------------------
- // | Copyright (c) 2011 http://www.fanwe.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Author: 云淡风轻(1956838968@qq.com)
- // +----------------------------------------------------------------------
- interface payment{
- /**
- * 获取支付代码或提示信息
- * @param integer $payment_log_id 支付单号ID
- */
- function get_payment_code($payment_notice_id);
-
- //响应支付
- function response($request);
-
- //响应通知
- function notify($request);
-
- //获取接口的显示
- function get_display_code();
- }
- ?>
|