短信验证

This commit is contained in:
“wanyongkang”
2022-05-13 17:23:31 +08:00
parent 7bf5866d7c
commit 2f3d3e7391
4 changed files with 157 additions and 2 deletions

View File

@@ -4,8 +4,8 @@
* @version:
* @Author: kangkang
* @Date: 2020-09-30 17:32:46
* @LastEditors: kangkang
* @LastEditTime: 2020-10-14 19:30:15
* @LastEditors: “wanyongkang” “937888580@qq.com”
* @LastEditTime: 2022-05-12 17:26:54
*/
header('Content-Type: text/html; charset=utf-8');
@@ -21,6 +21,14 @@ define('APP_DEBUG',true);
//加载框架文件
require_once APP_PATH.'fastphp/Fastphp.php';
$path = __DIR__ . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php';
if (file_exists($path)) {
require_once $path;
}
//加载配置文件
$config = require_once APP_PATH.'config/config.php';