notify.php 761 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * 本破解程序由三岁半资源网提供
  4. * 三岁半资源网www.sansuib.com
  5. * QQ:89171639 承接网站建设、公众号搭建、小程序建设、企业网站
  6. */
  7. if (version_compare(PHP_VERSION, '5.3.0', '<')) die('require PHP > 5.3.0 !');
  8. header("Content-Type:text/html; charset=utf-8");
  9. define('APP_DEBUG', true);
  10. define('BIND_MODULE', 'Home');
  11. define('APP_PATH', './Modules/');
  12. if (!is_file('Modules/Common/Conf/db.php')) {
  13. header('Location: ./install.php');
  14. exit;
  15. }
  16. //index.php?c=Public&a=login
  17. //Payment/weixin_notify
  18. $_GET['c'] = 'Payment';
  19. $_GET['a'] = 'weixin_notify';
  20. define('ROOT_PATH', str_replace('\\', '/', dirname(__FILE__)) . '/');
  21. define('RUNTIME_PATH', './Runtime/');
  22. require './ThinkPHP/ThinkPHP.php';
  23. ?>