💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
* 全局常量定义 * 全局接口初始化变更可修改/conf/api.php | 常量名 | 说明 | | --- | --- | | sbh_id | 模块主表索引 | | sbh_table | 模块主表名 | | sbh_per | 权限名 | ~~~ define('sbh_id', 'id'); define('sbh_table', 'table'); define('sbh_per', 'dir_file'); ~~~ * 状态初始化 ~~~ $T = isset($_REQUEST['T']) ? $_REQUEST['T'] : ''; if($T){ //>接口调起模块功能初始化 include '../../../../conf/sbhManageApi.php'; } else { //>直接调起模块初始化 empty($template) ? exit : NULL; } ~~~