shadowprince / forman-recaptcha
shadowprince/forman 的 Recaptcha 插件
0.2.2
2013-11-13 20:08 UTC
Requires
- php: >=5.2.0
- recaptcha/php5: 1.0.0
- shadowprince/forman: >=0.2
This package is not auto-updated.
Last update: 2024-09-24 01:10:45 UTC
README
Forman-Recaptcha - 是forman的插件,用于添加Recaptcha字段,以便轻松集成Recaptcha。它通过validate()
方法进行验证,设置错误;您只需将new \Forman\Field\Recaptcha()
添加到您的表单中即可使用。
$form = new \Forman\Form( new \Forman\Field\Value("name"), (new \Forman\Field\Recaptcha())->setKeys("private", "public") );
您可以通过以下方式设置默认密钥:
\Forman\Field\Recaptcha::defaultKeys("private", "public");
使用 recaptcha/php5。