blob: d5319c7da94fccc8f57b1b52910ca6d6529fa355 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
require_once __DIR__.'/../vendor/autoload.php';
use Gregwar\Captcha\CaptchaBuilder;
echo count(CaptchaBuilder::create()
->build()
->getFingerprint()
);
echo "\n";
|