ShowKey.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. define('EmpireCMSAPage','login');
  4. define('EmpireCMSNFPage','1');
  5. require('../class/connect.php');
  6. //取得随机数
  7. function domake_password($pw_length){
  8. global $public_r;
  9. if($public_r['keytog']==1)//字母
  10. {
  11. $low_ascii_bound=65;
  12. $upper_ascii_bound=90;
  13. $notuse=array(91);
  14. }
  15. elseif($public_r['keytog']==2)//数字+字母
  16. {
  17. $low_ascii_bound=50;
  18. $upper_ascii_bound=90;
  19. $notuse=array(58,59,60,61,62,63,64,73,79);
  20. }
  21. else//数字
  22. {
  23. $low_ascii_bound=48;
  24. $upper_ascii_bound=57;
  25. $notuse=array(58);
  26. }
  27. while($i<$pw_length)
  28. {
  29. if(PHP_VERSION<'4.2.0')
  30. {
  31. mt_srand((double)microtime()*1000000);
  32. }
  33. mt_srand();
  34. $randnum=mt_rand($low_ascii_bound,$upper_ascii_bound);
  35. if(!in_array($randnum,$notuse))
  36. {
  37. $password1=$password1.chr($randnum);
  38. $i++;
  39. }
  40. }
  41. return $password1;
  42. }
  43. //返回颜色
  44. function ReturnShowKeyColor($img){
  45. global $public_r;
  46. //背景色
  47. if($public_r['keybgcolor'])
  48. {
  49. $bgcr=ToReturnRGB($public_r['keybgcolor']);
  50. $r['bgcolor']=imagecolorallocate($img,$bgcr[0],$bgcr[1],$bgcr[2]);
  51. }
  52. else
  53. {
  54. $r['bgcolor']=imagecolorallocate($img,102,102,102);
  55. }
  56. //文字色
  57. if($public_r['keyfontcolor'])
  58. {
  59. $fcr=ToReturnRGB($public_r['keyfontcolor']);
  60. $r['fontcolor']=ImageColorAllocate($img,$fcr[0],$fcr[1],$fcr[2]);
  61. }
  62. else
  63. {
  64. $r['fontcolor']=ImageColorAllocate($img,255,255,255);
  65. }
  66. //干扰色
  67. if($public_r['keydistcolor'])
  68. {
  69. $dcr=ToReturnRGB($public_r['keydistcolor']);
  70. $r['distcolor']=ImageColorAllocate($img,$dcr[0],$dcr[1],$dcr[2]);
  71. }
  72. else
  73. {
  74. $r['distcolor']=ImageColorAllocate($img,71,71,71);
  75. }
  76. return $r;
  77. }
  78. //显示验证码
  79. function ShowKey($v){
  80. $vname=ecmsReturnKeyVarname($v);
  81. $key=strtolower(domake_password(4));
  82. ecmsSetShowKey($vname,$key,0,1);
  83. //是否支持gd库
  84. if(function_exists("imagejpeg"))
  85. {
  86. header ("Content-type: image/jpeg");
  87. $img=imagecreate(47,20);
  88. $colorr=ReturnShowKeyColor($img);
  89. $bgcolor=$colorr['bgcolor'];
  90. $fontcolor=$colorr['fontcolor'];
  91. $distcolor=$colorr['distcolor'];
  92. imagefill($img,0,0,$bgcolor);
  93. imagestring($img,5,6,3,$key,$fontcolor);
  94. for($i=0;$i<90;$i++) //加入干扰象素
  95. {
  96. imagesetpixel($img,rand()%70,rand()%30,$distcolor);
  97. }
  98. imagejpeg($img);
  99. imagedestroy($img);
  100. }
  101. elseif (function_exists("imagepng"))
  102. {
  103. header ("Content-type: image/png");
  104. $img=imagecreate(47,20);
  105. $colorr=ReturnShowKeyColor($img);
  106. $bgcolor=$colorr['bgcolor'];
  107. $fontcolor=$colorr['fontcolor'];
  108. $distcolor=$colorr['distcolor'];
  109. imagefill($img,0,0,$bgcolor);
  110. imagestring($img,5,6,3,$key,$fontcolor);
  111. for($i=0;$i<90;$i++) //加入干扰象素
  112. {
  113. imagesetpixel($img,rand()%70,rand()%30,$distcolor);
  114. }
  115. imagepng($img);
  116. imagedestroy($img);
  117. }
  118. elseif (function_exists("imagegif"))
  119. {
  120. header("Content-type: image/gif");
  121. $img=imagecreate(47,20);
  122. $colorr=ReturnShowKeyColor($img);
  123. $bgcolor=$colorr['bgcolor'];
  124. $fontcolor=$colorr['fontcolor'];
  125. $distcolor=$colorr['distcolor'];
  126. imagefill($img,0,0,$bgcolor);
  127. imagestring($img,5,6,3,$key,$fontcolor);
  128. for($i=0;$i<90;$i++) //加入干扰象素
  129. {
  130. imagesetpixel($img,rand()%70,rand()%30,$distcolor);
  131. }
  132. imagegif($img);
  133. imagedestroy($img);
  134. }
  135. elseif (function_exists("imagewbmp"))
  136. {
  137. header ("Content-type: image/vnd.wap.wbmp");
  138. $img=imagecreate(47,20);
  139. $colorr=ReturnShowKeyColor($img);
  140. $bgcolor=$colorr['bgcolor'];
  141. $fontcolor=$colorr['fontcolor'];
  142. $distcolor=$colorr['distcolor'];
  143. imagefill($img,0,0,$bgcolor);
  144. imagestring($img,5,6,3,$key,$fontcolor);
  145. for($i=0;$i<90;$i++) //加入干扰象素
  146. {
  147. imagesetpixel($img,rand()%70,rand()%30,$distcolor);
  148. }
  149. imagewbmp($img);
  150. imagedestroy($img);
  151. }
  152. else
  153. {
  154. ecmsSetShowKey($vname,'ecms',0,1);
  155. echo ReadFiletext("../data/images/ecms.jpg");
  156. }
  157. }
  158. //返回变量名
  159. function ecmsReturnKeyVarname($v){
  160. $name='checkkey';
  161. return $name;
  162. }
  163. $v=$_GET['v'];
  164. ShowKey($v);
  165. ?>