企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
* 全局常量定义 * 全局接口初始化变更可修改/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; } ~~~