首页 > 代码库 > php基本的验证码
php基本的验证码
<?php /* * Created on 2014-12-8 * * Tge the templats erated file go to * indow - Prefer- P Code Templates */ session_start(); $rand=''; /*设置字符*/ for($i=0;$i<4;$i++){ $rand.=dechex(rand(1,15)); } $_SESSION['check_pic']=$rand; /*设置画布大小*/ $img=imagecreatetruecolor(100,30); /*设置颜色*/ $bg=imagecolorallocate($img,0,0,0); $te=imagecolorallocate($img,255,255,255); /*将字符串写入图像*/ imagestring($img,rand(1,6),rand(1,70),rand(1,10),$rand,$te);/*图片,字体,x轴距离,y轴距离,写入的文字,写入的颜色*/ /*输出图像*/ header("Content-type: image/jpeg"); imagejpeg($img); ?>
php基本的验证码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。