分享PHP验证码类代码

来源:爱站网时间:2019-03-04编辑:网友分享
PHP验证码类代码大家清楚吗?在建站的时候很多程序员都会写上去,下面是爱站技术频道小编为大家整理的分享PHP验证码类代码,一起进入下文学习一下吧!
PHP验证码类代码大家清楚吗?在建站的时候很多程序员都会写上去,下面是爱站技术频道小编为大家整理的分享PHP验证码类代码,一起进入下文学习一下吧!
复制代码 代码如下:

session_start();
Header("Content-type: image/gif");
class SecurityCode
{
private $codes = '';
function __construct()
{
$code = '0-1-2-3-4-5-6-7-8-9-A-B-C-D-E-F-G-H-I-J-K-L-M-N-O-P-Q-R-S-T-U-V-W-X-Y-Z';
$codeArray = explode('-',$code);
shuffle($codeArray);
$this->codes = implode('',array_slice($codeArray,0,4));
}
public function CreateImg()
{
$_SESSION['check_pic'] = $this->codes;
$img = imagecreate(70,25);
imagecolorallocate($img,222,222,222);
$testcolor1 = imagecolorallocate($img,255,0,0);
$testcolor2 = imagecolorallocate($img,51,51,51);
$testcolor3 = imagecolorallocate($img,0,0,255);
$testcolor4 = imagecolorallocate($img,255,0,255);
for ($i = 0; $i < 4; $i++)
{
imagestring($img,rand(5,6),8 + $i * 15,rand(2,8),$this->codes[$i],rand(1,4));
}
imagegif($img);
}
}
$code = new SecurityCode();
$code->CreateImg();
$code = NULL;
?>

在封装到类中之后,将添加构造函数,以便于使用。您还可以继续改进验证代码类,感谢大家继续支持爱站技术频道!

上一篇:分析PHP中static关键字的原理

下一篇:对应PHP文件上传后缀名与文件类型

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载