You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
542 B
21 lines
542 B
<?php
|
|
namespace apps\captcha\controllers;
|
|
use apps\base\controllers\FrontendController;
|
|
|
|
class IndexController extends FrontendController {
|
|
|
|
/**
|
|
* 验证码
|
|
*/
|
|
public function actionIndex()
|
|
{
|
|
$params = array(
|
|
'fontSize' => 14, // 验证码字体大小
|
|
'length' => 4, // 验证码位数
|
|
'useNoise' => false, // 关闭验证码杂点
|
|
'fontttf' => '4.ttf'
|
|
);
|
|
$verify = new \vendor\Verify($params);
|
|
$verify->entry();
|
|
}
|
|
}
|