This commit is contained in:
筱锋xiao_lfeng 2023-05-02 17:02:59 +08:00
parent 6958a25f67
commit 463e20190f

15
Modules/API/header.php Normal file
View File

@ -0,0 +1,15 @@
<?php
/*
* Copyright © 2016 - 2023 筱锋xiao_lfeng. All Rights Reserved.
* 开发开源遵循 MIT 许可,若需商用请联系开发者
* https://www.x-lf.com/
*/
$Array_ConfigData = null;
// 从配置文件获取参数
$FileData = fopen(dirname(__FILE__, 3) . "/setting.inc.json", 'r');
while (!feof($FileData))
$Array_ConfigData .= fgetc($FileData);
$Array_ConfigData = json_decode($Array_ConfigData, JSON_UNESCAPED_UNICODE);
fclose($FileData);