请教下大神我的session怎么只能存一个数字啊?
echo出来的只有验证码产生的最后一个数字,$_SESSION['name']放在for里面外面都是这样
echo出来的只有验证码产生的最后一个数字,$_SESSION['name']放在for里面外面都是这样
2016-11-28
<?php
ob_start();
session_start();
$image=imagecreatetruecolor(100,30);
$fillcolor=imagecolorallocate($image,255,255,255);
imagefill($image,0,0,$fillcolor);
//生成文字;
for($i=0;$i<4;$i++){
$size=rand(15,25);
$angle=rand(-10,10);
$textx=rand(5+$i*$size,5+$i*$size);
$texty=rand(18,25);
$textcolor=imagecolorallocate($image,rand(50,120),rand(50,120),rand(50,120));
$font="E:/PHP/test/fonts/simkai.ttf";
$content=rand(0,9);
imagettftext($image,$size,$angle,$textx,$texty,$textcolor,$font,$content);
$_SESSION['verify']=$content;
}
/* $_SESSION['verify']=$content; */
//生成干扰点
for($i=0;$i<200;$i++){
$pixcolor=imagecolorallocate($image,rand(150,220),rand(150,220),rand(150,220));
imagesetpixel($image,rand(1,99),rand(1,29),$pixcolor);
}
header('content-type:image/gif');
imagegif($image);
imagedestroy($image);
$_SESSION那里放里面外面都一样。。。搞得我现在验证码只能验证最后一个数字。。。
举报