ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
### extend > 在controller 或 model 中引入: ``` use Extend\extend_function; ``` > 在方法中实例化: ``` $e = new extend_function(); ``` > 调用演示 ``` $e -> test(); ``` * 开发者可通过 Extend/extend_function.php 文件中增加其它可扩展的功能函数方法。 **默认代码:** ``` /* * 用户可扩展函数 */ namespace Extend; class extend_function { public function __construct() { } public function test() { echo "this demo."; } } ```