PHP code example of lesha724 / yii2-math-captcha
1. Go to this page and download the library: Download lesha724/yii2-math-captcha library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lesha724 / yii2-math-captcha example snippets
use yii\web\Controller;
class SiteController extends Controller
{
public function actions()
{
return [
...
'captcha' => [
'class' => 'lesha724\MathCaptcha\MathCaptchaAction',
//'imageLibrary'=>'imagick', only 'gd' and 'imagick'
'fixedVerifyCode' => YII_ENV_TEST ? '42' : null,
//не задавайте значение foreColor и backColor (они заполняться случайными цветами)
//остльные опции http://www.yiiframework.com/doc-2.0/yii-captcha-captchaaction.html
],
];
}
}
$form = ActiveForm::begin([]);
php composer.phar