随笔分类 -  php

摘要:middleware.php文件 <?php // 这是系统自动生成的middleware定义文件 return [ \think\middleware\AllowCrossDomain::class, ]; 阅读全文
posted @ 2022-12-22 13:33 星落森河 阅读(228) 评论(0) 推荐(0)
摘要:3张表:用户-角色-菜单 create table TbUser( Id int primary key identity(1,1), Username varchar(50) not null, Password varchar(100) not null, Status tinyint not 阅读全文
posted @ 2022-07-16 17:30 星落森河 阅读(522) 评论(0) 推荐(0)
摘要:try { }catch (\Throwable $exception){ halt($exception->getTraceAsString()); } 阅读全文
posted @ 2022-07-13 11:12 星落森河 阅读(55) 评论(0) 推荐(0)