php 중국어 인증 코드 구현 방법

본 논문 의 사례 는 phop 중국어 인증 코드 의 실현 방법 을 서술 하 였 다.모두 에 게 참고 하도록 공유 하 다.구체 적 인 분석 은 다음 과 같다.
먼저 다음 효과 도 를 보십시오.

구체 적 인 코드 는 다음 과 같다.

<?php
/*********************************
* Code by Gently
* 24/07/07
*    :          ,“    ”           
,
*              !
*Power by ZendStudio.Net
*********************************/
session_start();
header("Content-type: image/PNG");
$w=180;
$h=60;
$fontface="C:\WINDOWS\Fonts\MSYH.TTF"; //    
$str = "                              
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
                                  
        ";
$code="";
for($i=0;$i<4;$i++){
    $Xi=mt_rand(0,strlen($str)/2);
    if($Xi%2) $Xi+=1;
    $code.=substr($str,$Xi,2);
}
$_SESSION['code']=$code;
$im=imagecreatetruecolor($w,$h);
$bkcolor=imagecolorallocate($im,250,250,250);
imagefill($im,0,0,$bkcolor);
/***    ***/
for($i=0;$i<15;$i++){
    $fontcolor=imagecolorallocate($im,mt_rand(0,255),mt_rand
(0,255),mt_rand(0,255));
    imagearc($im,mt_rand(-10,$w),mt_rand(-10,$h),mt_rand
(30,300),mt_rand(20,200),55,44,$fontcolor);
}
for($i=0;$i<255;$i++){
    $fontcolor=imagecolorallocate($im,mt_rand(0,255),mt_rand
(0,255),mt_rand(0,255));
    imagesetpixel($im,mt_rand(0,$w),mt_rand(0,$h),$fontcolor);
}
/***********  *********/
for($i=0;$i<4;$i++){
    $fontcolor=imagecolorallocate($im,mt_rand(0,120),mt_rand
(0,120),mt_rand(0,120)); //             。
    $codex=iconv("GB2312","UTF-8",substr($code,$i*2,2));
    imagettftext($im,mt_rand(20,24),mt_rand(-
60,60),40*$i+20,mt_rand(30,35),$fontcolor,$fontface,$codex);
}
imagepng($im);
?>

본 논문 에서 말 한 것 이 여러분 의 phop 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기