123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <?php
- define('EmpireCMSAdmin','1');
- define('EmpireCMSAPage','login');
- define('EmpireCMSNFPage','1');
- require('../class/connect.php');
- //取得随机数
- function domake_password($pw_length){
- global $public_r;
- if($public_r['keytog']==1)//字母
- {
- $low_ascii_bound=65;
- $upper_ascii_bound=90;
- $notuse=array(91);
- }
- elseif($public_r['keytog']==2)//数字+字母
- {
- $low_ascii_bound=50;
- $upper_ascii_bound=90;
- $notuse=array(58,59,60,61,62,63,64,73,79);
- }
- else//数字
- {
- $low_ascii_bound=48;
- $upper_ascii_bound=57;
- $notuse=array(58);
- }
- while($i<$pw_length)
- {
- if(PHP_VERSION<'4.2.0')
- {
- mt_srand((double)microtime()*1000000);
- }
- mt_srand();
- $randnum=mt_rand($low_ascii_bound,$upper_ascii_bound);
- if(!in_array($randnum,$notuse))
- {
- $password1=$password1.chr($randnum);
- $i++;
- }
- }
- return $password1;
- }
- //返回颜色
- function ReturnShowKeyColor($img){
- global $public_r;
- //背景色
- if($public_r['keybgcolor'])
- {
- $bgcr=ToReturnRGB($public_r['keybgcolor']);
- $r['bgcolor']=imagecolorallocate($img,$bgcr[0],$bgcr[1],$bgcr[2]);
- }
- else
- {
- $r['bgcolor']=imagecolorallocate($img,102,102,102);
- }
- //文字色
- if($public_r['keyfontcolor'])
- {
- $fcr=ToReturnRGB($public_r['keyfontcolor']);
- $r['fontcolor']=ImageColorAllocate($img,$fcr[0],$fcr[1],$fcr[2]);
- }
- else
- {
- $r['fontcolor']=ImageColorAllocate($img,255,255,255);
- }
- //干扰色
- if($public_r['keydistcolor'])
- {
- $dcr=ToReturnRGB($public_r['keydistcolor']);
- $r['distcolor']=ImageColorAllocate($img,$dcr[0],$dcr[1],$dcr[2]);
- }
- else
- {
- $r['distcolor']=ImageColorAllocate($img,71,71,71);
- }
- return $r;
- }
- //显示验证码
- function ShowKey($v){
- $vname=ecmsReturnKeyVarname($v);
- $key=strtolower(domake_password(4));
- ecmsSetShowKey($vname,$key,0,1);
- //是否支持gd库
- if(function_exists("imagejpeg"))
- {
- header ("Content-type: image/jpeg");
- $img=imagecreate(47,20);
- $colorr=ReturnShowKeyColor($img);
- $bgcolor=$colorr['bgcolor'];
- $fontcolor=$colorr['fontcolor'];
- $distcolor=$colorr['distcolor'];
- imagefill($img,0,0,$bgcolor);
- imagestring($img,5,6,3,$key,$fontcolor);
- for($i=0;$i<90;$i++) //加入干扰象素
- {
- imagesetpixel($img,rand()%70,rand()%30,$distcolor);
- }
- imagejpeg($img);
- imagedestroy($img);
- }
- elseif (function_exists("imagepng"))
- {
- header ("Content-type: image/png");
- $img=imagecreate(47,20);
- $colorr=ReturnShowKeyColor($img);
- $bgcolor=$colorr['bgcolor'];
- $fontcolor=$colorr['fontcolor'];
- $distcolor=$colorr['distcolor'];
- imagefill($img,0,0,$bgcolor);
- imagestring($img,5,6,3,$key,$fontcolor);
- for($i=0;$i<90;$i++) //加入干扰象素
- {
- imagesetpixel($img,rand()%70,rand()%30,$distcolor);
- }
- imagepng($img);
- imagedestroy($img);
- }
- elseif (function_exists("imagegif"))
- {
- header("Content-type: image/gif");
- $img=imagecreate(47,20);
- $colorr=ReturnShowKeyColor($img);
- $bgcolor=$colorr['bgcolor'];
- $fontcolor=$colorr['fontcolor'];
- $distcolor=$colorr['distcolor'];
- imagefill($img,0,0,$bgcolor);
- imagestring($img,5,6,3,$key,$fontcolor);
- for($i=0;$i<90;$i++) //加入干扰象素
- {
- imagesetpixel($img,rand()%70,rand()%30,$distcolor);
- }
- imagegif($img);
- imagedestroy($img);
- }
- elseif (function_exists("imagewbmp"))
- {
- header ("Content-type: image/vnd.wap.wbmp");
- $img=imagecreate(47,20);
- $colorr=ReturnShowKeyColor($img);
- $bgcolor=$colorr['bgcolor'];
- $fontcolor=$colorr['fontcolor'];
- $distcolor=$colorr['distcolor'];
- imagefill($img,0,0,$bgcolor);
- imagestring($img,5,6,3,$key,$fontcolor);
- for($i=0;$i<90;$i++) //加入干扰象素
- {
- imagesetpixel($img,rand()%70,rand()%30,$distcolor);
- }
- imagewbmp($img);
- imagedestroy($img);
- }
- else
- {
- ecmsSetShowKey($vname,'ecms',0,1);
- echo ReadFiletext("../data/images/ecms.jpg");
- }
- }
- //返回变量名
- function ecmsReturnKeyVarname($v){
- $name='checkkey';
- return $name;
- }
- $v=$_GET['v'];
- ShowKey($v);
- ?>
|