-
$(".login").live('click',function(){
- var username=$(".input_user").val();
- varpassword=$( ".input_ps").val();
- var code=$('.input_checkcode').val();
- if(username==""){
- alert("ユーザー名を空にすることはできません");
- return false ;
- }
- if(password==""){
- alert("パスワードを空にすることはできません");
- return false;
- }
var URL="checkLogin.php?"
- var DATA="&username="+username+"&password="+password+"&code="+code;
- $.getJSON(URL+DATA,function(json){
- if(json.code=='code_error') {
- alert('確認コードエラー。確認コードを再入力してください');
- }
- if(json.username=='true_u'&&json.password=='true_p'){
- //alert(json.username+" | "+ユーザー名+'...1');
- window.location="index.php";
- }
- if(json.username=='error_u'||json.password=='error_p'){
- アラート( "入力されたユーザー名またはパスワードが間違っています。確認して再度ログインしてください。");
- window.location="login.php";
- }
- });
- });
-
-
-
コードをコピー
バックエンド checkLogin.php キー コード:
- $code=$_GET['code'];
- if($code!=$_SESSION['captchaCode']['content'])
- {$adminInfo['code']='code_error' ;};
-
- if($row['ユーザー名']==$ユーザー名&&$row['パスワード']==$パスワード){
-
- $_SESSION['ユーザー名']=$row['ユーザー名'];
- $adminInfo['username']='true_u';
- $adminInfo['password']='true_p';
- mysql_close();
- }else
- if($row['username']!=$username){
- $adminInfo['username']='error_u';
- }
- if($row['password']!=$password){
- $adminInfo['password']='error_p';
- }
-
- //var_dump ($adminInfo);終了;
- echo json_encode($adminInfo);
-
-
コードをコピー 詳細は以下の通りです。
checkCode.class.php//検証コード
-
- /*
- * PHP GD Lib に基づいた Captcha クラス
- * @author Design
- * @version 1.0
- * @copyright js8.in 2010 bbs.it-home.org
- * @demo
- * include('captchaClass.php');
- * $captchaDemo=new Captcha();
- * $captchaDemo->createImage();
- */
- class Captcha{
- //@検証コードの高さを定義しますimage
- private $height;
- //@認証コードの幅を定義する image
- private $width;
- //@認証コードの文字数を定義する
- private $textNum;
- //@認証コードの内容を定義する文字
- private $textContent;
- //@ 文字の色を定義します
- private $fontColor;
- //@ランダムなテキストの色を定義します
- private $randFontColor;
- //@フォントサイズを定義します
- private $fontSize;
- //@フォントを定義します
- private $fontFamily;
- //@ 背景色を定義します
- private $bgColor;
- //@ランダムな背景色を定義します
- private $randBgColor;
- //@文字言語を定義します
- private $textLang;
- //@文字言語を定義します干渉点の数
- private $noisePoint;
- / /@干渉線の数を定義します
- private $noiseLine;
- //@歪ませるかどうかを定義します
- private $distortion;
- //@歪んだ画像ソースを定義します
- private $distortionImage ;
- //@境界線の有無を定義します
- private $showBorder;
- //@検証コードの画像ソースを定義します
- private $image;
-
- //@Constructor コンストラクター
- public function Captcha(){
- $this-> textNum=4;
- $this->fontSize=16;
- $ this->fontFamily='c:\windows\fontsSIMYOU.ttf';//中国語フォントを設定します。Linux ディレクトリに変更できます
- $ this->textLang='ja';
- $this->noisePoint=30 ;
- $this->noiseLine=3;
- $this->distortion=false;
- $this->showBorder=false;
- }
-
- //@画像の幅を設定します
- public function setWidth($w){
- $this->width=$w;
- }
-
- //@画像の高さを設定します
- public function setHeight($h) {
- $this->height=$h;
- }
-
- //@文字番号を設定します
- public function setTextNumber($textN){
- $this->textNum=$textN;
- }
-
- //@文字色の設定
- public function setFontColor($fc){
- $this->fontColor=sscanf ($fc,'#%2x%2x%2x');
- }
-
- //@フォントサイズの設定
- public function setFontSize($n){
- $this->fontSize=$n;
- }
-
- // @フォントを設定します
- public function setFontFamily($ffUrl){
- $this->fontFamily=$ffUrl;
- }
-
- //@文字の言語を設定します
- public function setTextLang($lang){
- $this->textLang= $lang;
- }
-
- //@画像の背景を設定します
- public function setBgColor($bc){
- $ this->bgColor=sscanf($bc,'#%2x%2x%2x');
- }
-
- //@干渉点数を設定
- public function setNoisePoint($n){
- $this-> noisePoint=$n;
- }
-
- //@干渉ラインの数を設定
- public function setNoiseLine($n){
- $this ->noiseLine=$n;
- }
-
- //@干渉ラインを表示するかどうかを設定border
- public function setDistortion($b){
- $this->distortion=$b;
- }
-
- //@ボーダーを表示するかどうかを設定
- public function setShowBorder($border){
- $this->showBorder =$border;
- }
-
- //@初期化検証コード画像
- public function initImage(){
- if(empty($this->width)) {$this->width=floor($this-> fontSize*1.3)*$this->textNum+10;}
- if(empty($this->height)){$this->height =$this->fontSize*2;}
- $this- >image=imagecreatetruecolor($this->width,$this->height);
- if(empty($this->bgColor)){
- $this->randBgColor=imagecolorallocate($this-> image,mt_rand(100,255),mt_rand(100,255),mt_rand(100,255));
- }else{
- $this->randBgColor=imagecolorallocate($this->image,$this->bgColor[0],$ this->bgColor[1],$this->bgColor[2]);
- }
- imagefill($this->image,0,0 ,$this->randBgColor);
- }
-
- // @ランダムな文字を生成します
- public function randText($type){
- $string='';
- switch($type){
- case 'en':
- $ str='ABCDEFGHJKLMNPQRSTUVWXY3456789';
- for($i=0;$ i<$this->textNum;$i++){
- $string=$string.','.$str[mt_rand(0,29)];
- }
- Break;
- case 'cn':
- for($ i=0;$i<$this->textNum;$i++) {
- $string=$string.','.chr(rand(0xB0, 0xCC)).chr(rand(0xA1,0xBB));
- }
- $string=iconv('GB2312','UTF-8',$string); //エンコーディングを utf8 に変換します
- Break;
- }
- return substr ($string,1);
- }
-
- //@Output検証コードへのテキスト
- public function createText(){
- $textArray=explode(',',$this->randText($this->textLang) );
- $this->textContent=join('', $textArray);
- if(empty($this->fontColor)){
- $this->randFontColor=imagecolorallocate($this->image, mt_rand(0,100),mt_rand(0,100),mt_rand(0,100)) ;
- }else{
- $this->randFontColor=imagecolorallocate($this->image,$this->fontColor[0],$this->fontColor[1],$this->fontColor[2] ]);
- }
- for($i=0;$itextNum;$i++){
- $angle=mt_rand(-1,1)*mt_rand(1,20);
- imagettftext($this->image ,$this->fontSize,$angle,5+$i*floor($this->fontSize*1.3),floor($this->height*0.75),$this->randFontColor,$this- >fontFamily,$textArray[$i]);
- }
- }
-
- //@生成干扰点
- public function createNoisePoint(){
- for($i=0;$i<$this->noisePoint;$ i++){
- $pointColor=imagecolorallocate($this->image,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
- imagesetpixel($this->image,mt_rand(0,$this-> ;width),mt_rand(0,$this->height),$pointColor);
- }
-
- }
-
- //@产生干扰線
- public function createNoiseLine(){
- for($i=0;$i< ;$this->noiseLine;$i++) {
- $lineColor=imagecolorallocate($this->image,mt_rand(0,255),mt_rand(0,255),20);
- imageline($this->image,0, mt_rand(0,$this->width),$this->width,mt_rand(0,$this->height),$lineColor);
- }
- }
-
- //@扭曲文字
- public function distributionText (){
- $this->distortionImage=imagecreatetruecolor($this->width,$this->height);
- imagefill($this->distortionImage,0,0,$this->randBgColor);
- for($x=0;$xwidth;$x++){
- for($y=0;$yheight;$y++){
- $rgbColor=imagecolorat( $this->image,$x,$y);
- imagesetpixel($this->distortionImage,(int)($x+sin($y/$this->height*2*M_PI-M_PI*0.5 )*3),$y,$rgbColor);
- }
- }
- $this->image=$this->distortionImage;
- }
-
- //@ 生成验证码图片
- public function createImage(){
- $this->initImage(); //基本的な画像
- $this->createText(); //输出验证码文字
- if($this->distortion){$this->distortionText();} //扭曲文字
- $this->createNoisePoint(); //産干扰点
- $this->createNoiseLine(); //産干扰線
- if($this->showBorder){imagerectangle($this->image,0,0,$this->width-1,$this->height-1,$this- >randFontColor);} // 边框
- imagepng($this->image);
- imagedestroy($this->image);
- if($this->distortion){imagedestroy($this-> $distortionImage);}
- return $this->textContent;
- }
- }
- ?>
- code.php//new 一つのオブジェクト、负责图片の创建および验证码文本写入session
- session_start ();
- header("Content-type:image/png");
- include('checkCode.class.php');
- $captcha5=new Captcha();
-
- //@设置验证码宽度
- // $captcha5->setWidth(200);
-
- //@设置验证码高さ
- //$captcha5->setHeight(50);
-
- //@设置字符个数
- $captcha5->setTextNumber(4) );
- //@设置文字号颜色
- //$captcha5->setFontColor('#ffffff');
-
- //@设置字号大小
- //$captcha5->setFontSize(25);
-
- / /@设置文字
- $captcha5->setFontFamily('c:\windows\fonts\comic.TTF');
-
- //@设置语言
- $captcha5->setTextLang('en');
-
- // @设置背景颜色
- //$captcha5->setBgColor('#000000');
-
- //@设置干扰点数
- //$captcha5->setNoisePoint(600);
-
- //@设置干扰線数量
- //$captcha5->setNoiseLine(10);
-
- //@設置が否か扭曲
- //$captcha5->setDistortion(true);
-
- //@設置が否か框
- $captcha5-> setShowBorder(true);
-
- //出验证码
- $code=$captcha5->createImage();
- $_SESSION['captchaCode']['content']=$code;
- //$_SESSION['captchaCode ']['time']=microtime();
- ?>
-
复制码
login.php//登陆页面,调用生成验证码图片
|