为了账号安全,请及时绑定邮箱和手机立即绑定

请教下大神我的session怎么只能存一个数字啊?

echo出来的只有验证码产生的最后一个数字,$_SESSION['name']放在for里面外面都是这样

正在回答

2 回答

<?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那里放里面外面都一样。。。搞得我现在验证码只能验证最后一个数字。。。

0 回复 有任何疑惑可以回复我~

把代码贴出来看看!

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
手把手教你实现电商网站后台开发
  • 参与学习       117283    人
  • 解答问题       1999    个

手把手教你用PHP搭建电子商务平台,由浅入深教你搭建电商系统

进入课程

请教下大神我的session怎么只能存一个数字啊?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信