gpt4 book ai didi

php - 是否有可用于验证码的免费 PHP 库

转载 作者:行者123 更新时间:2023-12-04 21:16:12 28 4
gpt4 key购买 nike

在我们的网站中,我们采用 reCAPTCHA 来防止垃圾邮件。然而,我们的客户提示验证过于复杂。我也同意 reCAPTCHA 对于普通人来说太复杂了。对于不懂英语的人来说尤其困难。

我发现mail.yahoo.com的CAPTCHA功能很合理,不知道能不能像reCAPTCHA一样免费使用。

谢谢

更新

我想我最初的想法是找到一个可以用于验证码的免费 PHP 库。我只需要一些简单的方法来执行验证码,而不是让我的客户觉得即使是真人也很难解决这些单词。

最佳答案

大多数主机允许对 PHP 进行 GD 图像处理。它实际上非常容易学习,您可以在 10 或 20 分钟内制作自己的验证码脚本。也就是说,如果您已经了解 PHP。

这是一个非常简单的脚本示例:linky

例子:

Example Captcha

代码:

<?php
/*
Author: Simon Jarvis
Modified: Azmisov
Copyright: 2006 Simon Jarvis
License: GPL2
Link: http://www.white-hat-web-design.co.uk/articles/php-captcha.php
*/

//OPTIONS
$dwidth = 260;
$dheight = 90;
$dcharacters = 6;
//https://fontlibrary.org/en/font/jellee-typeface
$font = './jellee_roman.ttf';
$possible = '234679ABCDEHJLMNPTUVWXY';

//CODE
session_start();
function generateCode($characters) {
global $possible;
$code = '';
$len = strlen($possible)-1;
for($i=0; $i<$characters; $i++)
$code .= substr($possible, mt_rand(0, $len), 1);
return $code;
}
function createCaptcha($width,$height,$characters) {
global $font;
$code = generateCode($characters);
$_SESSION['captcha'] = $code;
//font size will be 75% of the image height
$font_size = $height * 0.4;
$image = imagecreate($width, $height) or die('Cannot initialize new GD image stream');
//set the colours
$background_color = imagecolorallocate($image, 20, 58, 78);
$text_color = imagecolorallocate($image, 74, 143, 200);
$noise_color = imagecolorallocate($image, 100, 120, 200);
//generate random dots in background
for( $i=0; $i<($width*$height)/3; $i++)
imagefilledellipse($image, mt_rand(0,$width), mt_rand(0,$height), 1, 1, $noise_color);
//generate random lines in background
for($i=0; $i<($width*$height)/150; $i++)
imageline($image, mt_rand(0,$width), mt_rand(0,$height), mt_rand(0,$width), mt_rand(0,$height), $noise_color);
//create textbox and add text
$textbox = imagettfbbox($font_size, 0, $font, $code) or die('Error in imagettfbbox function');
$x = ($width - $textbox[4])/2;
$y = ($height - $textbox[5])/2;
imagettftext($image, $font_size, 0, $x, $y, $text_color, $font , $code) or die('Error in imagettftext function');
//generate random dots/lines in foreground
for($i=0; $i<2; $i++)
imageline($image, mt_rand(0,$width), mt_rand(0,$height), mt_rand(0,$width), mt_rand(0,$height), $noise_color);
for( $i=0; $i<40; $i++)
imagefilledellipse($image, mt_rand(0,$width), mt_rand(0,$height), 3, 3, $noise_color);
//Apply filters
imagefilter($image, IMG_FILTER_CONTRAST, 1);
imagefilter($image, IMG_FILTER_EMBOSS);
imagefilter($image, IMG_FILTER_EDGEDETECT);
imagefilter($image, IMG_FILTER_NEGATE);
/* output captcha image to browser */
header('Content-Type: image/jpeg');
imagejpeg($image);
imagedestroy($image);
}
createCaptcha($width,$height,$characters);
?>

关于php - 是否有可用于验证码的免费 PHP 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3637651/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com