[TOC]
自己写的验证码是这几个文件
Captch.class.php(验证码工具类)
home.html(前台页面,入口文件)
check.php(检查处理文件)
# Captcha.class.php
~~~
<?php
class Captcha{
//码值库
private $charset =<<<"herdoc"
abcdefghkmnprstuvwxyzabcdefghkmnprstuvwxyzABCDEFGHKMNPRSTUVWXYZ01234567890123456789
lol英雄如下
战争女神 希维尔 轮子妈
曙光女神 蕾欧娜
风暴女神 迦娜
皎月女神 黛安娜
朋友圈都是卖面膜
真的好烦
herdoc;
private $code; //验证码字符串
private $codelen = 4; //验证码长度
private $width = 150; //宽度
private $height = 50; //高度
private $img; //图形资源句柄
private $font; //指定的字体
private $fontsize = 20; //指定字体大小
private $fontcolor; //指定字体颜色
//构造方法初始化
/**
* @param $codelen=4,$width=150,$height=40,$fontsize = 20,$font="Elephant.ttf"
* @access public
*/
public function __construct($codelen=4,$width=150,$height=40,$fontsize = 20,$font="./simkai.ttf") {
$this->charset = str_replace(" ", "x", $this->charset);
$this->charset = str_replace("\n", "j", $this->charset);
$this->charset = str_replace("\r", "d", $this->charset);
$this->charset = str_replace("\t", "z", $this->charset);
$this->codelen = $codelen;
$this->width = $width;
$this->height = $height;
$this->fontsize = $fontsize;
$this->font = $font;
}
/**
* 生成随机码,也就是码值,保存到$this->code
* @access private
* @return void
*/
private function createCode() {
$_len = mb_strlen($this->charset,'utf-8')-1;
$this->code=""; //初始化码值字符串
for($i=0;$i<$this->codelen;++$i){
$rand_index = mt_rand(0,$_len);
$this->code .= mb_substr($this->charset,$rand_index,1,'utf-8');
}
/*
for ($i=0;$i<$this->codelen;++$i) {
$this->code .= mb_substr($this->charset,mt_rand(0,$_len),1,'utf-8');
}
*/
}
/**
* 生成背景色
* @access private
* @return void
*/
private function createBg() {
$this->img = imagecreatetruecolor($this->width, $this->height);
$color = imagecolorallocate($this->img, mt_rand(170,250), mt_rand(170,255), mt_rand(170,255));
imagefilledrectangle($this->img,0,$this->height,$this->width,0,$color);
}
/**
* 生成文字到画布
* @access private
* @return void
*/
private function createFont() {
$_x = $this->width / $this->codelen;
for ($i=0;$i<$this->codelen;++$i) {
$this->fontcolor = imagecolorallocate($this->img,mt_rand(0,156),mt_rand(0,160),mt_rand(0,160));;
imagettftext($this->img,$this->fontsize,mt_rand(-30,50),$_x*$i+mt_rand(1,5),$this->height / 1.4,$this->fontcolor,$this->font,mb_substr($this->code,$i,1,'utf-8'));
}
}
/**
* 生成线条、雪花
* @access private
* @return void
*/
private function createLine() {
for ($i=0;$i<6;++$i) {
$color = imagecolorallocate($this->img,mt_rand(0,156),mt_rand(0,156),mt_rand(0,156));
imageline($this->img,mt_rand(0,$this->width),mt_rand(0,$this->height),mt_rand(0,$this->width),mt_rand(0,$this->height),$color);
}
for ($i=0;$i<100;++$i) {
$color = imagecolorallocate($this->img,mt_rand(150,200),mt_rand(200,255),mt_rand(150,255));
imagestring($this->img,mt_rand(1,5),mt_rand(0,$this->width),mt_rand(0,$this->height),'*',$color);
}
//点
for($k=0;$k<300;$k++){
$color=imagecolorallocate($this->img,mt_rand(0,200),mt_rand(0,200),mt_rand(0,200));
imagesetpixel($this->img,mt_rand(1,$this->width-2),mt_rand(1,$this->height-2),$color);
}
//圆弧
for($a=0;$a<20;$a++){
$color=imagecolorallocate($this->img,mt_rand(0,200),mt_rand(0,200),mt_rand(0,200));
imagearc($this->img,mt_rand(10,$this->width-10),mt_rand(4,$this->height-5),mt_rand(20,100),mt_rand(20,100),20,100,$color);
}
}
/**
* 输出到网页
* @access private
*/
private function outPut() {
ob_end_clean(); //清空前面的输出
if(imagetypes()&IMG_GIF){
header("Content-Type:image/gif");
imagegif($this->img);
}elseif(imagetypes()&IMG_PNG){
header("Content-Type:image/png");
imagepng($this->img);
}elseif(imagetypes()&IMG_JPEG){
header("Content-Type:image/jpge");
imagejpeg($this->img,null,100);
}else{
die("error:no image in the php server");
}
imagedestroy($this->img);
}
/**
* 对外生成
* @access private
* @return 验证码
*/
public function generateCode() {
$this->createBg();
$this->createCode();
$this->createLine();
$this->createFont();
$this->outPut();
}
/**
* 获取验证码的正确码值
* @access public
* @return string 小写的验证码码值
*/
public function getCode() {
return strtolower($this->code);
}
}
$c = new Captcha();
$c->generateCode();
@session_start();
$_SESSION['captcha'] = $c->getCode();
~~~
# home.html
~~~
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>session 图片验证实例</title>
<style type="text/css">
#login p{
margin-top: 15px;
line-height: 20px;
font-size: 14px;
font-weight: bold;
}
#login img{
cursor:pointer;
}
form{
margin-left:20px;
}
</style>
</head>
<body>
<?php
@session_start();
header('Expires:-1');
header('Cache-Control:no-cache');
header('Pragma:no-cache');
?>
<form id="login" action="./check.php" method="post">
<p>此例为session验证码,不区分大小写,点击图片更换</p>
<p>
<span>验证码:</span>
<input type="text" name="validate" value="" size=10>
<img title="点击刷新" src="Captcha.class.php" onclick="this.src='Captcha.class.php?r='+Math.random()"></img>
</p>
<p>
<input type="submit">
</p>
</form>
~~~
# check.php
~~~
<?php
@session_start();
echo "<a href='./home.html'>返回验证</a><br /><br />";
if(isset($_POST["validate"])){
$validate=mb_strtolower(trim($_POST["validate"]),'utf-8');
echo "您刚才输入的是!<font color='blue'>".$_POST["validate"]."</font>!<br>";
if($validate != $_SESSION["captcha"]){
//判断session值与用户输入的验证码是否一致;
echo "<font color=red>输入有误</font>";
echo "<br />答案是!<font color='blue'>".$_SESSION['captcha'],"</font>!<br />";
}else{
echo "<font color=green>通过验证</font>";
echo "<br />答案是!<font color='blue'>".$_SESSION['captcha'],"</font>!<br />";
}
}
?>
~~~
- OAuth
- 简介
- 步骤
- 单点登录
- .user.ini
- 时间转换为今天昨天前天几天前
- 获取ip接口
- 协程
- 概念
- yield-from && return-values
- 协程与阻塞的思考
- 中间件
- mysqli异步与php的协程
- 代码片段
- pdo 执行的sql语句
- 二进制安全
- 捕捉异常中断
- global
- 利用cookie模拟登陆
- 解析非正常json
- 简单的对称加密算法
- RSA 加密
- 过滤掉emoji表情
- 判断远程图片是否存在
- 一分钟限制请求100次
- 文件处理
- 多文件上传
- 显示所有文件
- 文件下载和上面显示所有文件配合
- 文件的删除,统计,存数组等
- 图片处理
- 简介
- 验证码
- 图片等比缩放
- 批量添加水印
- beanstalkd
- 安装
- 使用
- RabbitMQ
- 简介
- debain安装
- centos安装
- 常用方法
- 入门
- 工作队列
- 订阅,发布
- 路由
- 主题
- 远程调用RPC
- 消息中间件的选型
- .htaccess
- isset、empty、if区别以及0、‘’、null
- php各版本
- php7.2 不向后兼容的改动
- php中的各种坑
- php7改变
- php慢日志
- 邮件
- PHPMailer实现发邮件
- 验证邮件地址真实性
- 文件下载
- FastCgi 与 PHP-fpm 之间的关系
- openssl 加解密
- 反射
- 钩子方法
- 查找插件
- opcode
- opcache使用
- opcache优化
- 分布式一致性hash算法
- 概念
- 哈希算法好坏的四个定义
- php实现
- java实现
- 数组
- jwt
- jwt简介
- 单点登录
- phpize
- GeoIP扩展
- php无法获得https网页内容的解决方案
- homestead运行的脚本
- Unicode和Utf-8转换
- php优化
- kafka
- fpm配置
- configure配置详解