streams/Code/Module/Captcha.php
2024-02-21 08:06:38 +11:00

24 lines
No EOL
397 B
PHP

<?php
namespace Code\Module;
use Code\Web\Controller;
use Gregwar\Captcha\CaptchaBuilder;
class Captcha extends Controller
{
public function init()
{
$captcha = new CaptchaBuilder;
$_SESSION['phrase'] = $captcha->getPhrase();
header('Content-Type: image/jpeg');
$captcha
->build()
->output()
;
killme();
}
}