🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
#### 输出验证码 ```php $captcha = new common_captcha_Captcha(4, 100, 30); $captcha->generate(); Session::set('captcha' ,strtolower($captcha->getCode())); ``` #### session 获取 ```php Session::get('captcha'); ```