rdx / text-captcha
1.1
2019-01-03 18:30 UTC
This package is auto-updated.
Last update: 2024-10-22 01:11:11 UTC
README
Create a captcha maker
Without any config:
$maker = CaptchaMaker::createLocal('en'); // or 'nl'
With some custimization:
$maker = new CaptchaMaker();
$maker->add(new ArithmeticCaptcha(new ArithmeticTranslatorLocal(__DIR__ . "/lang/arithmetic-$lang.php")), 10);
$maker->add(new WordListCaptcha(new WordListTranslatorLocal(__DIR__ . "/lang/wordlist-$lang.php")), 20);
10
and 20
for a 10:20
chance of an ArithmeticCaptcha
. You can decide which captcha's to use more. Selection is random, but
you decice the relative chance.
Create a random captcha
Of a random type:
$captcha = $maker->make();
Or create the type explicitly, and then the captcha:
$type = $maker->random();
$captcha = $type->make();
Translations
nl
and en
(US) are included. You can add your own language files and select them easily, by manually adding captcha types
with translators.
Or you can get translations from anywhere else, by implementing the correct translators (every captcha type has one), and passing it to the captcha type.
Examples
- In the list list apple mango arm banana pink horse what's the third fruit?
- banana
- What's the first color in monkey head mango arm blue cow?
- blue
- Of list head banana cow kiwi yellow monkey what's the first body part?
- head
- What is eleven plus zero?
- 11
- eleven
- three plus eleven = ?
- 14
- fourteen
- Calculate twelve minus seven.
- 5
- five
See demo.php
for making captchas and lang/*
for translations.