1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-02-03 21:10:00 +00:00

14 lines
244 B
PHP
Raw Normal View History

2022-03-14 13:49:48 +00:00
<?php
use Gregwar\Captcha\PhraseBuilder;
use Gregwar\Captcha\CaptchaBuilder;
$builder = new CaptchaBuilder;
$builder->build();
$_SESSION['phrase'] = $builder->getPhrase();
header('Content-Type: image/jpeg');
$builder->build()->output();
?>