- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章一个经典的PHP验证码类分享由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
我们通过PHP的GD库图像处理内容,设计一个验证码类Vcode。将该类声明在文件vcode.class.php中,并通过面向对象的特性将一些实现的细节封装在该类中。只要在创建对象时,为构造方法提供三个参数,包括创建验证码图片的宽度、高度及验证码字母个数,就可以成功创建一个验证码类的对象。该类的声明代码如下所示:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
<?php
class
Vcode {
private
$width
;
//宽
private
$height
;
//高
private
$num
;
//数量
private
$code
;
//验证码
private
$img
;
//图像的资源
//构造方法, 三个参数
function
__construct(
$width
=80,
$height
=20,
$num
=4) {
$this
->width =
$width
;
$this
->height =
$height
;
$this
->num =
$num
;
$this
->code =
$this
->createcode();
//调用自己的方法
}
//获取字符的验证码, 用于保存在服务器中
function
getcode() {
return
$this
->code;
}
//输出图像
function
outimg() {
//创建背景 (颜色, 大小, 边框)
$this
->createback();
//画字 (大小, 字体颜色)
$this
->outstring();
//干扰元素(点, 线条)
$this
->setdisturbcolor();
//输出图像
$this
->printimg();
}
//创建背景
private
function
createback() {
//创建资源
$this
->img = imagecreatetruecolor(
$this
->width,
$this
->height);
//设置随机的背景颜色
$bgcolor
= imagecolorallocate(
$this
->img, rand(225, 255), rand(225, 255), rand(225, 255));
//设置背景填充
imagefill(
$this
->img, 0, 0,
$bgcolor
);
//画边框
$bordercolor
= imagecolorallocate(
$this
->img, 0, 0, 0);
imagerectangle(
$this
->img, 0, 0,
$this
->width-1,
$this
->height-1,
$bordercolor
);
}
//画字
private
function
outstring() {
for
(
$i
=0;
$i
<
$this
->num;
$i
++) {
$color
= imagecolorallocate(
$this
->img, rand(0, 128), rand(0, 128), rand(0, 128));
$fontsize
=rand(3,5);
//字体大小
$x
= 3+(
$this
->width/
$this
->num)*
$i
;
//水平位置
$y
= rand(0, imagefontheight(
$fontsize
)-3);
//画出每个字符
imagechar(
$this
->img,
$fontsize
,
$x
,
$y
,
$this
->code{
$i
},
$color
);
}
}
//设置干扰元素
private
function
setdisturbcolor() {
//加上点数
for
(
$i
=0;
$i
<100;
$i
++) {
$color
= imagecolorallocate(
$this
->img, rand(0, 255), rand(0, 255), rand(0, 255));
imagesetpixel(
$this
->img, rand(1,
$this
->width-2), rand(1,
$this
->height-2),
$color
);
}
//加线条
for
(
$i
=0;
$i
<10;
$i
++) {
$color
= imagecolorallocate(
$this
->img, rand(0, 255), rand(0, 128), rand(0, 255));
imagearc(
$this
->img,rand(-10,
$this
->width+10), rand(-10,
$this
->height+10), rand(30, 300), rand(30, 300), 55,44,
$color
);
}
}
//输出图像
private
function
printimg() {
if
(imagetypes() & IMG_GIF) {
header(
"Content-type: image/gif"
);
imagegif(
$this
->img);
}
elseif
(function_exists(
"imagejpeg"
)) {
header(
"Content-type: image/jpeg"
);
imagegif(
$this
->img);
}
elseif
(imagetypes() & IMG_PNG) {
header(
"Content-type: image/png"
);
imagegif(
$this
->img);
}
else
{
die
(
"No image support in this PHP server"
);
}
}
//生成验证码字符串
private
function
createcode() {
$codes
=
"3456789abcdefghijkmnpqrstuvwxyABCDEFGHIJKLMNPQRSTUVWXY"
;
$code
=
""
;
for
(
$i
=0;
$i
<
$this
->num;
$i
++) {
$code
.=
$codes
{rand(0,
strlen
(
$codes
)-1)};
}
return
$code
;
}
//用于自动销毁图像资源
function
__destruct() {
imagedestroy(
$this
->img);
}
}
|
在上面的脚本中,虽然声明验证码类Vcode的代码比较多,但细节都被封装在类中,只要直接输出对象,就可以向客户端浏览器中输出幅图片,并可以在浏览器表单中使用。另外本类自动获取验证码图片中的字符串,促成在服务的$_SESSION["code"]中。在提交表单时,只有用户在表单中输入验证码图片上显示的文字,并和服务器中保留的验证码字符串完全相同时,表单才可以提交成功。(注意:验证码在服务器端在$_SESSION["code"]中,所以必须开启session会话才能使用该类,) 。
在下面的脚本code.php中,使用session_start()开启用户会话控制,然后包含验证码类Vcode所在文件vcode.class.php,创建该类对象并直接输出。就可以将随机生成的验证码图片发送出去,同时会自动将这个验证码字符串保存在服务器中一份。代码如下所示:
1
2
3
4
5
6
7
8
9
10
11
|
<?php
//开启session
session_start();
include
"vcode.class.php"
;
//构造方法
$vcode
=
new
Vcode(80, 30, 4);
//将验证码放到服务器自己的空间保存一份
$_SESSION
[
'code'
] =
$vcode
->getcode();
//将验证码图片输出
$vcode
->outimg();
?>
|
表单代码如下所示:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
session_start();
if
(isset(
$_POST
[
'dosubmit'
])) {
if
(
strtoupper
(
$_SESSION
[
'code'
]) ==
strtoupper
(
$_POST
[
'code'
]) ) {
echo
"输入成功!<br>"
;
}
else
{
echo
"输入不对!<br>"
;
}
}
?>
<body>
<form action=
"reg.php"
method=
"post"
>
username: <input type=
"text"
name=
"username"
> <br>
password: <input type=
"password"
name=
"password"
> <br>
code: <input type=
"text"
onkeyup=
"if(this.value!=this.value.toUpperCase()) this.value=this.value.toUpperCase()"
size=
"6"
name=
"code"
>
<img src=
"code.php"
onclick=
"this.src='code.php?'+Math.random()"
/> <br>
<input type=
"submit"
name=
"dosubmit"
value=
"登 录"
> <br>
</form>
</body>
|
PHP经典验证码类下载:
PHP验证码类.rar 。
最后此篇关于一个经典的PHP验证码类分享的文章就讲到这里了,如果你想了解更多关于一个经典的PHP验证码类分享的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我在网上找到了这个很棒的小代码,但它似乎没有在正确删除空格后比较两个字符串?我知道一些js,但这里的任何错误都超出了我的理解范围。希望有人知道这个问题的答案。 注意:它似乎还根据 channel 的数
如何使用 requirejs 导入 recaptcha。我已经尝试了几件事,但没有任何效果。 我需要这样做,以便能够在加载后使用 reCaptcha 的渲染方法自行渲染它。 require.confi
我可以做些什么来尝试解决之前一直有效但现在在尝试访问 javascript 文件时返回 404 的重新验证码问题。 我不认为这是编码问题,因为他们今天下午就起来了。 值得一提的是,我的两个使用 re-
好的,我们在生产中实现了 Recaptcha。我们收到错误是因为它无法到达使用该服务所需的 IP 地址。我们为 IP 地址打开一个端口以到达 Google。没问题。我们这样做并显式配置该 IP 地址以
我正在使用 Robot Framework + Selenium2Library 为 Web 编写验收测试。关键是 web 包含一些我无法自动化的输入字段 (CAPTCHA),并且我无法告诉我的供应商
我正在尝试实现验证码。我正在使用 jquery (ajax) 调用验证脚本 (http://www.google.com/recaptcha/api/verify)。这将数据类型限制为 JSONP,G
我在站点中使用 scrapy 提交表单 https://www.barefootstudent.com/jobs (任何进入页面的链接等http://www.barefootstudent.com/l
我经营一个游戏网站,所以我有很多用户登录,他们可以每两分钟做一次某些事情。 我在某些地方有一个 CAPTCHA 系统,对于某些东西,它总是要求输入代码,而对于其他东西,它会每 10 分钟询问一次。 我
thinkphp中的验证码是可以直接调用的,非常方便,我们看一下 Think 文件夹下 有一个名为verify.class.php的文件 首先 我们要有一个模
我正在实现一个在注册表单上带有验证码的网站;我的第一次。我已经阅读了数十篇关于支持和反对论点以及所有各种实现的帖子。我对这一切很满意,但对我来说这是必要的邪恶。 我不明白的是为什么人们会在整个网络上的
我正在使用 Sitecore 8 update 3,目前我向 WFFM 表单添加了验证码并按下音频,但显示错误如下: [ArgumentNullException: Value cannot be n
我正在对我已经完成的网络系统部分进行一小部分升级,其中之一是确保我的 Google reCaptcha 的安全性正确。 目前,我使用此代码: //reCaptcha $Url = "https://w
我正在对我已经完成的网络系统部分进行一小部分升级,其中之一是确保我的 Google reCaptcha 的安全性正确。 目前,我使用此代码: //reCaptcha $Url = "https://w
我对制作 3D 验证码很感兴趣,我让它使用一种字体,如下所示: import string from matplotlib.font_manager import findSystemFonts im
大家。我是jquery初学者,想请教几个问题。 我正在为表单提交测试编写一个简单的数学验证码,我想每次按下“重置按钮”时生成一组新的随机数。 但是当我用谷歌搜索解决方案时,大多数人都在尝试重新加载页面
我的网站上有一个验证码,我认为样式被其他一些 css 覆盖了,正如您在下面的验证码底部看到的那样,它有点偏离.. 在 firebug 中发现 CSS 覆盖的最佳方法是什么?已经看了一段时间了,似乎无法
我在 Google Play 上有一个 PNR 查询应用程序。它工作得很好。但最近 Indian Railwys 在他们的 PNR 查询部分添加了验证码,因此我无法将正确的数据传递到服务器以获得正确的
我被指派为 joomla 中的自定义组件创建验证码验证,但我不知道如何正确地完成它。 我知道有许多可用的验证码插件,例如 recaptcha,但我需要使用公司创建的自定义验证码。 它在 session
本文实例讲述了php/JS实现的生成随机密码(验证码)功能。分享给大家供大家参考,具体如下: PHP写法: ?
我正在关注关于电话授权的 React Native firebase 文档 ( https://rnfirebase.io/docs/v5.x.x/auth/phone-auth ),并且对是否需要(
我是一名优秀的程序员,十分优秀!