On this page
Caution
The documentation you are viewing is for an older version of this component.
Switch to the latest (v3) version.
View Helpers
FormCaptcha
Laminas\Form\View\Helper\FormCaptcha
will render a CAPTCHA as defined in a
Captcha element.
Basic usage
use Laminas\Captcha;
use Laminas\Form\Element;
$captcha = new Element\Captcha('captcha');
$captcha->setCaptcha(new Captcha\Dumb());
$captcha->setLabel('Please verify you are human');
// Within your view...
echo $this->formCaptcha($captcha);