最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php简单生成验证码
时间:2022-06-24 16:00:41 编辑:袖梨 来源:一聚教程网
php教程
//must start or continue session and save CAPTCHA string in $_SESSION for
//it to be available to other requests
if(!isset($_SESSION)){
session_start();
header('Cache-control:private');
}
//create a 65*20 pixel image
$;
$;
$image=imagecreate(65,20);
//fill the image background color
$bg_color=imagecolorallocate($image,0x33,0x66,0xFF);
imagefilledrectangle($image,0,0,$width,$height,$bg_color);
//fetch random text
$text=random_text(5);
//determine x and y coordinates for centering text
$font=5;
$x=imagesx($image)/2-strlen($text)*imagefontwidth($font)/2;
$y=imagesy($image)/2-imagefontheight($font)/2;
//write text on image
$fg_color=imagecolorallocate($image,0xFF,0xFF,0xFF);
imagestring($image,$font,$x,$y,$text,$fg_color);
//save the CAPTCHA string for later comparison
$_SESSION['captcha']=$text;
//output the image
header('Content-type:image/png');
imagepng($image);
imagedestroy($image);
?>
相关文章
- 迅雷app磁力链解析与使用指南-迅雷磁力链前缀格式详解 02-11
- 哔哩哔哩无广告纯净版入口-哔哩哔哩创作者中心直通车 02-11
- 迅雷动漫app官方正版安装包下载-迅雷动漫最新版本免费下载 02-11
- 生命树哪里可以看最新剧集?CCTV及网络平台同步在线播放地址 02-11
- 爱发电官网登录链接-爱发电官方登录入口 02-11
- 女神漫画在线阅读免费漫画入口-女神漫画官方正版漫画下载安装 02-11