用codeigniter实现验证码很容易吗?
我正在使用 CodeIgniter,需要一个易于实现的验证码。简单的事情,没什么太复杂的。有什么想法吗?
I'm using CodeIgniter and need an easy to implement captcha. Something simple, nothing too complicated. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
https://github.com/EllisLab/CodeIgniter/wiki/ReCAPTCHA <- - 验证码对你有用吗?
https://github.com/EllisLab/CodeIgniter/wiki/ReCAPTCHA <-- would recaptcha work for you?
尝试使用 ReCaptcha - http://recaptcha.net/ - 它很简单并且也有 PHP API。
Try using ReCaptcha - http://recaptcha.net/ - it's easy and has PHP API too.
12 个基本验证码列表。例如 Captchator 看起来很容易实现。
如果您因为垃圾邮件而希望使用验证码,我建议您也查看 akismet 或 打字板反垃圾邮件
A list of 12 essential captchas. Captchator for example looks easy to implement.
If you wish to use captcha because of spam messages I would advice you to also look at akismet or typepad antispam
制作自己的验证码脚本也很有趣。
使用 php gd 库,实现这一点并不难。
当然,重新发明轮子是没有意义的,使用像 recaptcha 这样的脚本会更安全,但就像我说的 - 这可能很有趣。
Making your own captcha script could also be fun.
With php gd library it is not too hard to accomplish.
Ofcourse, there is no point in reinventing the wheel and using scripts like recaptcha is much safer, but like I said - it could be fun.
最好的解决方案是由 nettuts.com 提供的,但对于 codeigniter 来说,最好的解决方案就在这里。 http://codeigniter.com/wiki/captcha/
为了集成到您的脚本,您有来分析 API。
The best solution was provided by nettuts.com, but for the codeigniter, the best solution is right here. http://codeigniter.com/wiki/captcha/
In order to integrate to your script, you have to analyze the API.