当前位置:首页 > PHP教程 > php应用 > 列表

PHP实现简单汉字验证码

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-14 14:06:05 浏览: 评论:0 

大家知道简单数字或者字母验证码很容易被破解,但是算式验证码或者中文汉字验证码不容易被破解,所以建议大家在使用验证码的时候,尽量用算式验证码或者中文汉字验证码。

现在越来越多的网站都开始使用汉字验证码了,既增加了我们国人的亲切感,同时也增加了机器破解的难度,这里我就简单粗暴的说一下。。。

创建背景画布

  1. $image = imagecreatetruecolor(200, 60); 
  2. $background = imagecolorallocate($image, 255, 255, 255); 
  3. imagefill($image, 0, 0, $background); 

画干扰点

  1. for ($i=0; $i < 300; $i++) {  
  2.   $pixColor = imagecolorallocate($image, rand(150, 240), rand(150, 240), rand(150, 240)); 
  3.   $pixX = rand(10, 190); 
  4.   $pixY = rand(5, 55); 
  5.   imagesetpixel($image$pixX$pixY$pixColor); 

画干扰线

  1. //4条水平线 
  2. for ($i=0; $i < 5; $i++) {  
  3.   $lineColor = imagecolorallocate($image, rand(50, 150), rand(50, 150), rand(50, 150)); 
  4.   $lineX1 = 0; 
  5.   $lineX2 = 300; 
  6.   $lineY1 = ($i + 1) * 12; 
  7.   $lineY2 = ($i + 1) * 12; 
  8.   imageline($image$lineX1$lineY1$lineX2$lineY2$lineColor); 
  9.  
  10. //10条垂直线 
  11. for ($i=0; $i < 30; $i++) {  
  12.   $lineColor = imagecolorallocate($image, rand(50, 150), rand(50, 150), rand(50, 150)); 
  13.   $lineX1 = ($i + 1) * 10; 
  14.   $lineX2 = ($i + 1) * 10; 
  15.   $lineY1 = 0; 
  16.   $lineY2 = 60; 
  17.   imageline($image$lineX1$lineY1$lineX2$lineY2$lineColor); 

画汉字

  1. $text = array('栀''子''花''开'); 
  2. for ($i=0; $i < 4; $i++) { 
  3.   $textColor = imagecolorallocate($image, rand(20, 100), rand(20, 100), rand(20, 100)); 
  4.   $textX = $i * 50 + 10; 
  5.   $textY = rand(40, 60); 
  6.   imagettftext($image, 30, rand(20, 50), $textX$textY$textColor"/Library/Fonts/华文仿宋.ttf"$text[$i]); 

这里注意一下,字体文件一定要支持中文的

编码要使用utf-8,gbk的中文记得要转吗【iconv函数可以帮助你】

输出图像

header("Content-Type:image/png");

imagepng($image);

销毁资源

imagedestroy($image);

经过粗略的搞吧搞吧,中文验证码也就显示出来了,当然一般网站使用的时候会有一个汉字库种子,从里面随机取出特定个数的汉字显示,最后就是记录到session进行验证了。

Tags: PHP汉字验证码

分享到: