You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
306 B
15 lines
306 B
<?php
|
|
|
|
// [ 支付通知入口文件 ]
|
|
|
|
// 手动定义路由
|
|
$_GET['s'] = '/task/passall/run';
|
|
|
|
// 定义运行目录
|
|
define('WEB_PATH', __DIR__ . '/');
|
|
|
|
// 定义应用目录
|
|
define('APP_PATH', WEB_PATH . '../source/application/');
|
|
|
|
// 加载框架引导文件
|
|
require APP_PATH . '../thinkphp/start.php';
|