Session
在框架中开启Session,需要在config\middleware.php中输入如下初始化代码:
\think\middleware\SessionInit::class
在控制器中,需要引入如下:
use think\facade\Session
验证码功能
tp中的验证码需要安装,命令如下:
composer require topthink/think-captcha
在控制器中引入:
use think\captcha\facade\Captcha;
在模版内添加验证码的显示代码:
<div>{:captcha_img()}</div>
view
tp中的view需要安装,命令如下:
composer require topthink/think-view
在控制器中引入:
use think\facade\View;