>백엔드 개발 >PHP 튜토리얼 >일관되지 않은 PHP 세션 확인 코드를 해결하고 항상 마지막 확인 코드를 표시합니다.

일관되지 않은 PHP 세션 확인 코드를 해결하고 항상 마지막 확인 코드를 표시합니다.

WBOY
WBOY원래의
2016-07-25 09:04:231362검색
  1. $(".login").live('click',function(){

  2. var 사용자 이름=$(". input_user").val();
  3. var 비밀번호=$(".input_ps").val();
  4. var code=$('.input_checkcode').val();
  5. if(사용자 이름 ===""){
  6. Alert("사용자 이름은 비워둘 수 없습니다.");
  7. return false;
  8. }
  9. if(password==""){
  10. Alert("비밀번호는 비워둘 수 없습니다. be는 비어 있습니다.");
  11. return false;
  12. }

  13. var URL="checkLogin.php?";

  14. var DATA="&username=" 사용자 이름 " &password =" 비밀번호 "&code=" code;
  15. $.getJSON(URL DATA,function(json){
  16. if(json.code=='code_error'){
  17. Alert('인증 코드 오류, 인증코드를 다시 입력해주세요');
  18. }
  19. if(json.username=='true_u'&&json.password=='true_p'){
  20. //alert(json.username "|" 사용자 이름 '..1');
  21. window.location="index.php";
  22. }
  23. if(json.username=='error_u'||json.password=='error_p') {
  24. Alert("사용자 이름이나 비밀번호가 잘못 입력되었습니다. 확인 후 다시 로그인해주세요!");
  25. window.location="login.php";
  26. }
  27. });
  28. }) ;
코드 복사

백엔드 checkLogin.php 키 코드:

  1. $code=$_GET['code'];
  2. if($code!=$_SESSION['captchaCode']['content'] )
  3. {$adminInfo['code']='code_error';};
  4. if($row['username']==$username&&$row['password']==$password) {
  5. $_SESSION['사용자 이름']=$row['사용자 이름'];
  6. $adminInfo['사용자 이름']='true_u';
  7. $adminInfo['password']=' true_p';
  8. mysql_close();
  9. }else
  10. if($row['username']!=$username){
  11. $adminInfo['username']='error_u';
  12. }
  13. if($row['password']!=$password){
  14. $adminInfo['password']='error_p';
  15. }
  16. //var_dump($ adminInfo);exit;
  17. echo json_encode($adminInfo);
코드 복사

내용은 다음과 같습니다. checkCode.class.php//인증코드

  1. /*
  2. * PHP GD Lib 기반 보안 문자 클래스
  3. * @author Design
  4. * @version 1.0
  5. * @copyright js8.2010년 bbs.it-home.org
  6. * @demo
  7. * include('captchaClass.php');
  8. * $captchaDemo=new Captcha();
  9. * $captchaDemo->createImage();
  10. */
  11. class Captcha{
  12. //@인증 코드 이미지의 높이 정의
  13. private $height;
  14. //@Define the 인증 코드 이미지 너비
  15. private $width;
  16. //@인증 코드 문자 수 정의
  17. private $textNum;
  18. //@인증 코드 문자 내용 정의
  19. private $textContent;
  20. //@ 문자 색상 정의
  21. private $fontColor;
  22. //@임의의 텍스트 색상 정의
  23. private $randFontColor;
  24. //@글꼴 크기 정의
  25. private $ fontSize;
  26. // @Define 글꼴
  27. private $fontFamily;
  28. //@배경색 정의
  29. private $bgColor;
  30. //@임의의 배경색 정의
  31. private $randBgColor;
  32. // @문자 언어 정의
  33. private $textLang;
  34. //@간섭 지점 수 정의
  35. private $noisePoint;
  36. //@간섭 선 수 정의
  37. private $noiseLine;
  38. // 왜곡 여부를 @define
  39. private $distortion;
  40. //@왜곡된 이미지 소스를 정의
  41. private $distortionImage;
  42. //@왜곡 여부를 정의 border
  43. private $showBorder;
  44. // @Definition 인증 코드 이미지 소스
  45. private $image;
  46. //@Constructor 생성자
  47. public function Captcha(){
  48. $ this->textNum=4;
  49. $ this->fontSize=16;
  50. $this->fontFamily='c:\windows\fontsSIMYOU.ttf';//중국어 글꼴을 설정하세요. Linux 디렉터리로 변경
  51. $this->textLang ='en';
  52. $this->noisePoint=30;
  53. $this->noiseLine=3;
  54. $this- >distortion=false;
  55. $this->showBorder =false;
  56. }
  57. //@이미지 너비 설정
  58. 공용 함수 setWidth($w){
  59. $ this->width=$w;
  60. }
  61. //@이미지 높이 설정
  62. public function setHeight($h){
  63. $this->height=$h;
  64. }
  65. //@문자 수 설정
  66. public function setTextNumber($textN){
  67. $this->textNum=$textN;
  68. }
  69. //@문자 색상 설정
  70. public function setFontColor($fc) {
  71. $this->fontColor=sscanf($fc,'#%2x%2x%2x');
  72. }
  73. //@글꼴 크기 설정
  74. public function setFontSize($ n){
  75. $this->fontSize=$n;
  76. }
  77. //@글꼴 설정
  78. 공용 함수 setFontFamily($ffUrl){
  79. $this->fontFamily=$ffUrl;
  80. }
  81. //@문자 언어 설정
  82. 공용 함수 setTextLang($lang) {
  83. $this->textLang=$lang;
  84. }
  85. //@사진 배경 설정
  86. public function setBgColor($bc){
  87. $this-> bgColor=sscanf($bc,'#%2x%2x%2x');
  88. }
  89. //@노이즈 포인트 수 설정
  90. 공용 함수 setNoisePoint($n){
  91. $this->noisePoint=$n;
  92. }
  93. / /@간섭선 수 설정
  94. 공용 함수 setNoiseLine($n){
  95. $this->noiseLine =$n;
  96. }
  97. //@왜곡 여부 설정
  98. public function setDistortion($b){
  99. $this->distortion=$b;
  100. }
  101. //@테두리 표시 여부 설정
  102. public function setShowBorder($border){
  103. $this->showBorder=$border;
  104. }
  105. // @초기화 확인 코드 이미지
  106. public function initImage(){
  107. if(empty($this->width )){$this->width=floor($this->fontSize*1.3)*$ this->textNum 10;}
  108. if(empty($this->height)){$this- >height=$this->fontSize*2;}
  109. $this->image =imagecreatetruecolor($this->너비,$this->높이);
  110. if(empty($this ->bgColor)){
  111. $this->randBgColor=imagecolorallocate($this-> ;image,mt_rand(100,255),mt_rand(100,255),mt_rand(100,255));
  112. }else{
  113. $this->randBgColor=imagecolorallocate($this->image,$this->bgColor [0],$this->bgColor[1],$this->bgColor[2]);
  114. }
  115. imagefill($this->image,0,0,$this-> randBgColor);
  116. }
  117. //@임의의 문자 생성
  118. 공개 함수 randText($ type){
  119. $string='';
  120. switch($type){
  121. 케이스 'en':
  122. $str='ABCDEFGHJKLMNPQRSTUVWXY3456789';
  123. for($i=0;$ i<$this->textNum;$i ){
  124. $string=$string.' ,'.$str[mt_rand(0,29)];
  125. }
  126. break;
  127. case 'cn':
  128. for($i=0;$i<$this->textNum ;$i ) {
  129. $string=$string.','.chr(rand(0xB0,0xCC)) .chr(rand(0xA1,0xBB));
  130. }
  131. $string=iconv( 'GB2312','UTF-8',$string); //인코딩을 utf8로 변환
  132. break;
  133. }
  134. return substr($string,1);
  135. }
  136. //@인증 코드로 텍스트 출력
  137. public function createText(){
  138. $textArray=explode(' ,',$this->randText($this->textLang));
  139. $ this->textContent=join('',$textArray);
  140. if(empty($this->fontColor)){
  141. $this->randFontColor=imagecolorallocate($this->image, mt_rand(0,100),mt_rand(0,100),mt_rand(0,100));
  142. }else{
  143. $this ->randFontColor=imagecolorallocate($this->image,$this->fontColor[0] ,$this->fontColor[1],$this->fontColor[2]);
  144. }
  145. for($i=0;$i<$this->textNum;$i ){
  146. $angle=mt_rand(-1,1)*mt_rand(1,20);
  147. imagettftext( $this->image,$this->fontSize,$angle,5 $i*floor($this->fontSize*1.3),floor($this->height*0.75),$this-> randFontColor,$this->fontFamily,$textArray[$i]);
  148. }
  149. }
  150. //@生成干扰点
  151. public function createNoisePoint(){
  152. for ($i=0;$i<$this->noisePoint;$i ){
  153. $pointColor=imagecolorallocate($this->image,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255)) ;
  154. imagesetpixel($this->image,mt_rand(0,$this->width),mt_rand(0,$this->height),$pointColor);
  155. }
  156. }
  157. //@产生干扰线
  158. 공개 함수 createNoiseLine(){
  159. for($i=0;$i<$this->noiseLine;$i ) {
  160. $lineColor=imagecolorallocate($this->image,mt_rand(0,255),mt_rand(0,255),20);
  161. imageline($this->image,0,mt_rand(0,$this->width) ,$this->width,mt_rand(0,$this->height),$lineColor);
  162. }
  163. }
  164. //@扭曲文字
  165. 공용 함수istortionText( ){
  166. $this->distortionImage=imagecreatetruecolor($this->width,$this->height);
  167. imagefill($this->distortionImage,0,0,$this-> randBgColor);
  168. for($x=0;$x<$this->width;$x ){
  169. for($y=0;$y<$this->height;$y ) {
  170. $rgbColor=imagecolorat($this->image,$x,$y);
  171. imagesetpixel($this->distortionImage,(int)($x sin($y/$this-> ;높이*2*M_PI-M_PI*0.5)*3),$y,$rgbColor);
  172. }
  173. }
  174. $this->image=$this->distortionImage;
  175. }
  176. //@生成验证码图文
  177. public function createImage(){
  178. $this->initImage(); //创建基本图文
  179. $this->createText(); //출제验证码字符
  180. if($this->distortion){$this->distortionText();} //扭曲文字
  181. $this->createNoisePoint(); //产生干扰点
  182. $this->createNoiseLine(); //产生干扰线
  183. if($this->showBorder){imageretangle($this->image,0,0,$this->width-1,$this->height-1,$ this->randFontColor);} //添加边框
  184. imagepng($this->image);
  185. imagedestroy($this->image);
  186. if($this->distortion) {imagedestroy($this->$distortionImage);}
  187. return $this->textContent;
  188. }
  189. }
  190. ?>
  191. code.php//new 一个对象,负责图 Pictures 创建以及验证码文本写入session
  192. session_start();
  193. header("Content-type:image/png");
  194. include('checkCode.class .php');
  195. $captcha5=new Captcha();
  196. //@设置验证码宽島
  197. //$captcha5->setWidth(200);
  198. //@设置验证码고도
  199. //$captcha5->setHeight(50);
  200. //@设置字符个数
  201. $captcha5->setTextNumber(4);
  202. //@设置字符颜color
  203. //$captcha5->setFontColor('#ffffff');
  204. //@设置字符颜color
  205. //$captcha5-> setFontSize(25);
  206. //@设置字体
  207. $captcha5->setFontFamily('c:\windows\fonts\comic.TTF');
  208. //@设置语言
  209. $captcha5->setTextLang('en');
  210. //@设置背景颜color
  211. //$captcha5->setBgColor('#000000');
  212. //@设置是否扭曲
  213. //$captcha5->setDistortion(true);
  214. //@设置是否显示边框
  215. $captcha5-> setShowBorder(true);
  216. //输流验证码
  217. $code=$captcha5->createImage();
  218. $_SESSION['captchaCode']['content']=$code;
  219. //$_SESSION['captchaCode']['time']=microtime();
  220. ?>
  221. 复代码
로그인하세요. php//登陆页화면

验证码:
  1. http://img.jbxue.com/admin/code.php
  2. 제제대码
  3. 성명:
    본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.