当前位置: 代码迷 >> 综合 >> thinkphp5--自定义扩展类
  详细解决方案

thinkphp5--自定义扩展类

热度:96   发布时间:2023-10-13 11:04:37.0

1.在extend目录下新建要定义的扩展类:如下图所示

thinkphp5--自定义扩展类

2.定义扩展类的内容

    <?phpnamespace org;/****/class Auth{
     public function __construct(){
     # code...}public function xx() {
     echo 'xxxxxxxxxxxxxx';}}

3.在控制器中调用自定义的扩展类

<?phpnamespace app\index\controller; use think\Controller; use org\Auth; //引入扩展类class Index extends Controller {
     public function index(){
      $a = new Auth();$a->xx();} }

4.结果如下

xxxxxxxxxxxxxx