Heim >Backend-Entwicklung >PHP-Tutorial >php jquery 验证码代码_PHP教程

php jquery 验证码代码_PHP教程

WBOY
WBOYOriginal
2016-07-20 11:01:451200Durchsuche

本教程主要利用jquery 的ajax来实现无刷新jquery php验证码代码的提前验证操作。  

本教程主要利用jquery 的ajax来实现无刷新jquery php教程验证码代码的提前验证操作。

//调用此页面,如果下面的式子成立,则生成验证码图片
if($_get['action']=='verifycode'){
    rand_create();
}
//验证码图片生成

function rand_create(){
    //通知浏览器将要输出png图片

    header('content-type: image/png');

    //准备好随机数发生器种子
    srand((double)microtime()*1000000);
    //准备图片的相关参数
    $im = imagecreate(62,20);
    $black = imagecolorallocate($im, 0,0,0); //rgb黑色标识符
    $white = imagecolorallocate($im, 255,255,255); //rgb白色标识符
    $gray = imagecolorallocate($im, 200,200,200); //rgb灰色标识符
    //开始作图   
    imagefill($im,0,0,$gray);
    while(($randval=rand()%100000)         //将四位整数验证码绘入图片
     session_start();
   $_session['login_check_num'] = $randval;
        imagestring($im, 5, 10, 3, $randval, $black);
    }
    //加入干扰象素
    for($i=0;$i         $randcolor = imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));
        imagesetpixel($im, rand()%70 , rand()%30 , $randcolor);
    }
    //输出验证图片
    imagepng($im);
    //销毁图像标识符
    imagedestroy($im);
}

?>
静态页面上显示验证码代码为:

验证码:
                php jquery 验证码代码_PHP教程
jquery部分的ajax验证代码为:

$.post("session.php",
      {reg_code:$("#reg_code").val()},
      function(data){
      if(data === "1"){
       //do...
      }else{
       do...      }
     }
    );

而协助ajax验证的php页面名为session.php,其代码为:

session_start();
//检验验证码
if($_post['reg_code'] == $_session['login_check_num']){
   echo 1;
}else{
   echo 0;
   exit();
}


?>


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/445429.htmlTechArticle本教程主要利用jquery 的ajax来实现无刷新jquery php验证码代码的提前验证操作。 本教程主要利用jquery 的ajax来实现无刷新jquery php教程验证码代...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn