💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
1. 在vendor/sbhKernel/下创建类名包,如 : className 2. 在类名包下创建类函数文件,如 : funName.php ~~~ /* * SpeedBH v8.1 * 类名说明 * */ namespace className; class plugin{ public function test(){ echo 'test'; } } ~~~ 3. 在/composer.json中加入新的核 ~~~ { "autoload": { "psr-4": { "RedisCache\\": "vendor/sbhKernel/redis/", "DataBase\\": "vendor/sbhKernel/database/", "Tool\\": "vendor/sbhKernel/tool/", "Url\\": "vendor/sbhKernel/url/", "WeiXin\\": "vendor/sbhKernel/weixin/", "sbhMange\\": "vendor/sbhManage/api/", "className": "vendor/sbhKernel/className/" } } } ~~~ 4. 右键点击项目,选择'compose' -> '更新(dev)' 5. 测试加载是否成功,有打印出来则为成功 ~~~ include_once '../../conf/sbhInterfaceApi.php'; $className = new className\plugin(); echo $className->test(); ~~~