修改alipay地址

This commit is contained in:
wanyongkang
2020-10-14 20:20:49 +08:00
parent 7d7d8f09ad
commit 91a914bcc4
1102 changed files with 217 additions and 26 deletions

View File

@@ -1,4 +1,12 @@
<?php
/*
* @Descripttion:
* @version:
* @Author: kangkang
* @Date: 2020-09-30 17:32:46
* @LastEditors: kangkang
* @LastEditTime: 2020-10-14 19:30:15
*/
header('Content-Type: text/html; charset=utf-8');
@@ -11,10 +19,10 @@ define('APP_PATH',__DIR__.'/');
define('APP_DEBUG',true);
//加载框架文件
require APP_PATH.'fastphp/Fastphp.php';
require_once APP_PATH.'fastphp/Fastphp.php';
//加载配置文件
$config = require APP_PATH.'config/config.php';
$config = require_once APP_PATH.'config/config.php';
//实例化框架类
(new fastphp\Fastphp($config))->run();