php实现验证码的方法:首先创建绘制验证码类,代码如“class Captcha {…}”;然后绘制图片页面;接着设置表单页面;最后创建好验证页面即可。
本文操作环境:Windows7系统、PHP7.1版,DELL G3电脑
PHP 实现验证码
绘制验证码类
width = $width; $this->height = $height; // 创建图像对象 $this->image = imagecreatetruecolor($width, $height); // 创建验证码 $this->generateCaptchaCode(); } public function __destruct() { // 销毁图像对象 imagedestroy($this->image); } public function paint() { // 绘制背景 $this->paintBackground(); // 绘制验证码 $this->paintText(); // 绘制干扰 $this->paintDirty(); } public function output() { // 设置头部为PNG图片 header('Content-Type: image/png'); // 输出到浏览器 imagepng($this->image); } public function code() { return $this->code; } private function paintBackground() { // 背景颜色设置为白色 $color = imagecolorallocate($this->image, 255, 255, 255); // 填充背景 imagefill($this->image, 0, 0, $color); } private function paintText() { // 遍历验证码,一个字符一个字符地绘制 for ($i = 0; $i code); ++$i) { $fontsize = 6; $color = imagecolorallocate($this->image, rand(0,50), rand(0,50), rand(0,50)); $x = ($i * 100 / self::CODE_LENGTH) + rand(5, 10); $y = rand(5, 10); imagestring($this->image, $fontsize, $x, $y, $this->code[$i], $color); } } private function paintDirty() { // 绘制点 for ($i = 0; $i image, rand(100,200), rand(100,200), rand(100,200)); // 画点 imagesetpixel($this->image, rand(1,99), rand(1,29), $pointcolor); } // 绘制线条 for ($i = 0; $i image, rand(100,200), rand(100,200), rand(100,200)); // 画线 imageline($this->image, rand(1,$this->width-1), rand(1,29), rand(1,99), rand(1,29), $linecolor); } } private function generateCaptchaCode() { // 从备选字符串中随机选取字符 for ($i = 0; $i code .= $ch; } } private $image = NULL; // 图像对象 private $code = ""; // 验证码 private $width = 0; // 图像长度 private $height = 0; // 图像宽度}?>
登录后复制
绘制图片页面
立即学习“PHP免费学习笔记(深入)”;
code(); // 将验证码存入Session$captcha->paint(); // 绘制$captcha->output(); // 输出?>
登录后复制
推荐学习:《PHP视频教程》
表单页面
nbsp;html>提交页面 function validate_form(form) { with (form) { if (captcha.value == null || captcha.value == "") { alert("验证码不能为空!"); return false; } } return true; }
登录后复制
验证页面
nbsp;html>验证页面
登录后复制
以上就是如何用 php实现验证码的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2513076.html