call_back_url.php 223 B

12345678910
  1. <?php
  2. /* *
  3. * 功能:支付宝页面跳转同步通知页面
  4. */
  5. $_GET['act'] = 'payment';
  6. $_GET['op'] = 'return';
  7. $_GET['payment_code'] = 'alipay';
  8. require_once(dirname(__FILE__) . '/../../../index.php');
  9. ?>