程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 三款php 中文驗證碼生成與調用方法

三款php 中文驗證碼生成與調用方法

編輯:關於PHP編程

三款php 中文驗證碼生成與調用方法 在php中要生成中文驗證碼就必須做與生成驗證驗證碼不一樣的操作,因為GD函數只接受UTF8格式編碼的文字,所以在用php生成中文驗證碼時面要前首先要進行編碼轉換,操作php的iconv可以實例。

三款php教程 中文驗證碼生成與調用方法
在php中要生成中文驗證碼就必須做與生成驗證驗證碼不一樣的操作,因為gd函數只接受utf8格式編碼的文字,所以在用php生成中文驗證碼時面要前首先要進行編碼轉換,操作php的iconv可以實例。
*/

$ch_str="你要生成中文驗證碼漢字";
$str=array();
for ($i=0;$i<strlen($ch_str);$i+=3)
{
    $str[]=$ch_str[$i].$ch_str[$i+1].$ch_str[$i+2];
}
//圖片的長和高
$image_x=200;
$image_y=100;
$im = imagecreate($image_x,$image_y);
//這裡取圖片底色為白色
$bkg = imagecolorallocate($im,255,255,255);
//顯示的字體樣式,這個要把文件放到對應的目錄中,如果你沒有文件就去window的字體文件中找一個吧。
$fnt = "simfang.ttf";
//為圖像分配一些顏色
$white=imagecolorallocate($im,234,185,95);
//在圖片上畫橢圓弧,指定下坐標點
imagearc($im, 150, 8, 20, 20, 75, 170, $white);
imagearc($im, 180, 7,50, 30, 75, 175, $white);
//在圖片上畫一條線段,指定下坐標點
imageline($im,20,20,180,30,$white);
imageline($im,20,18,170,50,$white);
imageline($im,25,50,80,50,$white);
//亂點的數量
$noise_num=3000;
$line_num=80;
//各種混亂字符的顏色
$rectangle_color=imagecolorallocate($im,0xaa,0xaa,0xaa);
$noise_color=imagecolorallocate($im,0x00,0x00,0x00);
$font_color=imagecolorallocate($im,0x00,0x00,0x00);
for($i=0;$i<$noise_num;$i++)
{
    //在一個坐標點上畫一個單一像素,這個點上面定義了,是黑色的。
    imagesetpixel($im,mt_rand(0,$image_x),mt_rand(0,$image_y),$noise_color);
}

for($i=0;$i<$line_num;$i++)
{
    $line_color=imagecolorallocate($im,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
    //在兩個坐標點間畫一條線,顏色在上面定義
    imageline($im,mt_rand(0,$image_x),mt_rand(0,$image_y),mt_rand(0,$image_x),mt_rand(0,$image_y),$line_color);   
}
$randnum=rand(0,count($str)-4);
//保持是偶數
if ($randnum%2)
{
    $randnum+=1;   
}
$str1=$str[$randnum].$str[$randnum+1];
for ($i=0;$i<2;$i++)
{
    imagettftext($im, rand(28,32), rand(0,70), rand(($image_x/4)*$i+$image_x/10,($image_x/4)*$i+$image_x/8), rand($image_y/2+$image_y/10,$image_y/2+$image_y/5), $font_color, $fnt, $str[$randnum+$i]);   
}
imagepng($im);
imagedestroy($im);

//生成中文驗證碼二
$str="中文漢字";
$image_x=110;
$image_y=110;
$im = imagecreate($image_x,$image_y);
$bkg = imagecolorallocate($im,255,255,255);
$fnt = "hb.ttf"; //顯示的字體樣式
$white=imagecolorallocate($im,234,185,95);
imagearc($im, 150, 8, 20, 20, 75, 170, $white);
imagearc($im, 180, 7,50, 30, 75, 175, $white);
imageline($im,20,20,180,30,$white);
imageline($im,20,18,170,50,$white);
imageline($im,25,50,80,50,$white);
$noise_num=3000;
$line_num=80;
imagecolorallocate($im,0xff,0xff,0xff);
$rectangle_color=imagecolorallocate($im,0xaa,0xaa,0xaa);
$noise_color=imagecolorallocate($im,0x00,0x00,0x00);
$font_color=imagecolorallocate($im,0x00,0x00,0x00);
$line_color=imagecolorallocate($im,0x00,0x00,0x00);
for($i=0;$i<$noise_num;$i++)
imagesetpixel($im,mt_rand(0,$image_x),mt_rand(0,$image_y),$noise_color);
for($i=0;$i<$line_num;$i++)
imageline($im,mt_rand(0,$image_x),mt_rand(0,$image_y),mt_rand(0,$image_x),mt_rand(0,$image_y),$line_color);
$randnum=rand(0,strlen($str)-4);
if ($randnum%2)$randnum+=1;
$str1=substr($str,$randnum,4);
$str2 = iconv("gb2312","utf-8",$str1);//驗證漢字在$str1裡面

imagettftext($im, rand(28,32), rand(0,70), rand(25,27), rand(70,100), $font_color, $fnt, $str2);
imagepng($im);
imagedestroy($im);

//把漢字放在數組
/*
gd函數只接受utf8格式編碼的文字,所以在寫文字前首先要進行編碼轉換。php自帶的iconv和mbstring庫都可以完成這項工作
*/

$randcode=array('寵');
$codetable=array();
$fp=fopen("gb2312.txt","r");
while($line=fgets($fp))
    $codetable[hexdec(substr($line,0,6))]=substr($line,7,6);
fclose($fp); 

//gb2312轉utf8
function gb2utf8($gbstr)
{
    global $codetable;
    if(trim($gbstr)=="")
        return $gbstr;
    $ret="";
    $utf8="";
    while($gbstr)
    {
        if(ord(substr($gbstr,0,1))>127)
        {
            $thisw=substr($gbstr,0,2);
            $gbstr=substr($gbstr,2,strlen($gbstr));
            $utf8="";
            @$utf8=u2utf8(hexdec($codetable[hexdec(bin2hex($thisw))-0x8080]));

 

            if($utf8!="")
            for($i=0;$i<strlen($utf8);$i+=3)
                $ret.=chr(substr($utf8,$i,3));
        }
        else
        {
            $ret.=substr($gbstr,0,1);
            $gbstr=substr($gbstr,1,strlen($gbstr));
        }
    }
    return $ret;

 

//unicode轉utf8
function u2utf8($c)
{
    $str="";
    if($c<0x80)
        $str.=$c;
    elseif($c<0x800)
    {
        $str.=(0xc0|$c>>6);
        $str.=(0x80|$c&0x3f);
    }
    elseif($c<0x10000)
    {
        $str.=(0xe0|$c>>12);
        $str.=(0x80|$c>>6&0x3f);
        $str.=(0x80|$c&0x3f);
    }
    elseif($c<0x200000)
    {
        $str.=(0xf0|$c>>18);
        $str.=(0x80|$c>>12&0x3f);

 

        $str.=(0x80|$c>>6&0x3f);
        $str.=(0x80|$c&0x3f);
    }
    return $str;

//生成附加碼
function create_excode($length)
{
 global $randcode;
    header("content-type: image/png");
 $image_x=$length*30;    //圖片寬度
 $image_y=40;            //圖片高度
    $noise_num=80*$length;   //雜點數量
    $line_num=$length-2;      //干擾線數量
 $image=imagecreate($image_x,$image_y);
 imagecolorallocate($image,0xff,0xff,0xff);                  //設定背景顏色
 $rectangle_color=imagecolorallocate($image,0xaa,0xaa,0xaa); //邊框顏色
 $noise_color=imagecolorallocate($image,0x00,0x00,0x00);     //雜點顏色
 $font_color=imagecolorallocate($image,0x00,0x00,0x00);      //字體顏色
 $line_color=imagecolorallocate($image,0x33,0x33,0x33);      //干擾線顏色

 //加入雜點
    for($i=0;$i<$noise_num;$i++)
  imagesetpixel($image,mt_rand(0,$image_x),mt_rand(0,$image_y),$noise_color);

 $font_face="simkai.ttf";    //字體
    $x=2;
    $session_code='';
    for($i=0;$i<$length;$i++)
    {
        $code=$randcode[mt_rand(0,count($randcode)-1)];
     imagettftext($image,18,mt_rand(-6,6),$x,29,$font_color,$font_face,gb2utf8($code));
        $x+=30;
        $session_code.=$code;
    }
    @session_start();
    $_session['excode']=$session_code;  //把附加碼的值放在session中

 
    //加入干擾線
    for($i=0;$i<$line_num;$i++)
     imageline($image,mt_rand(0,$image_x),mt_rand(0,$image_y),
                    mt_rand(0,$image_x),mt_rand(0,$image_y),$line_color);
 imagerectangle($image,0,0,$image_x-1,$image_y-1,$rectangle_color);  //加個邊框
 imagepng($image);
 imagedestroy($image);
}
create_excode(6);

 

// 使用的時候直接用html語法:<img src="excode.php">調用就可以了,在服務端做驗證時取session存儲的驗證字符與用戶提交的字符進行比較,相同則通過驗證

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved