首页上一页 1 下一页尾页 2 条记录 1/1页
php项目开发案例全程实录网上社区验证码又出错了
发表在PHP图书答疑
2011-05-18
是否精华
是
否
版块置顶:
是
否
验证码开始无法显示,一查发现是
session_register函数过期了,这个不只是这里才出现,以前用php自学手册就已经如此,还是仍旧出现这个问题,太伤我心了,改好了还是提示验证码输入错误,我晕啊,怎么搞的,尽快帮我弄好来,不然后面的代码都不就是废了的吗。尽快请出书的人看看喇~~我都见人家提出这样的问题了。。
源码如下:
<?php
srand((double)microtime()*1000000);
$im=imagecreate(45,18);
$black=imagecolorallocate($im,0,0,0);
$white=imagecolorallocate($im,255,255,255);
$gray=imagecolorallocate($im,200,200,200);
imagefill($im,0,0,$gray);
//session_register("autonum");
$_SESSION["autonum"]="";
for($i=0;$i<4;$i++){
$str=mt_rand(1,3);
$size=mt_rand(3,6);
$authnum=mt_rand(0,9);
$_SESSION["autonum"].=$authnum;
imagestring($im,$size,(5+$i*10),$str,$authnum,imagecolorallocate($im,rand(0,130),rand(0,130),rand(0,130)));
}
for($i=0;$i<200;$i++){
$randcolor=imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));
imagesetpixel($im,rand()%70,rand()%30,$randcolor);
}
imagepng($im);
imagedestroy($im);
?>
注销那句就可以显示验证码,但是验证码就是老是说输入错误,
session_register函数过期了,这个不只是这里才出现,以前用php自学手册就已经如此,还是仍旧出现这个问题,太伤我心了,改好了还是提示验证码输入错误,我晕啊,怎么搞的,尽快帮我弄好来,不然后面的代码都不就是废了的吗。尽快请出书的人看看喇~~我都见人家提出这样的问题了。。
源码如下:
<?php
srand((double)microtime()*1000000);
$im=imagecreate(45,18);
$black=imagecolorallocate($im,0,0,0);
$white=imagecolorallocate($im,255,255,255);
$gray=imagecolorallocate($im,200,200,200);
imagefill($im,0,0,$gray);
//session_register("autonum");
$_SESSION["autonum"]="";
for($i=0;$i<4;$i++){
$str=mt_rand(1,3);
$size=mt_rand(3,6);
$authnum=mt_rand(0,9);
$_SESSION["autonum"].=$authnum;
imagestring($im,$size,(5+$i*10),$str,$authnum,imagecolorallocate($im,rand(0,130),rand(0,130),rand(0,130)));
}
for($i=0;$i<200;$i++){
$randcolor=imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));
imagesetpixel($im,rand()%70,rand()%30,$randcolor);
}
imagepng($im);
imagedestroy($im);
?>
注销那句就可以显示验证码,但是验证码就是老是说输入错误,