PHP邮箱验证示例教程


Posted in PHP onJune 01, 2016

在用户注册中最常见的安全验证之一就是邮箱验证。根据行业的一般做法,进行邮箱验证是避免潜在的安全隐患一种非常重要的做法,现在就让我们来讨论一下这些最佳实践,来看看如何在PHP中创建一个邮箱验证。

让我们先从一个注册表单开始:

<form method="post" action="http://mydomain.com/registration/">
 <fieldset class="form-group">
 <label for="fname">First Name:</label>
 <input type="text" name="fname" class="form-control" required />
  </fieldset>

  <fieldset class="form-group">
 <label for="lname">Last Name:</label>
 <input type="text" name="lname" class="form-control" required />
  </fieldset>

  <fieldset class="form-group">
 <label for="email">Last name:</label>
 <input type="email" name="email" class="form-control" required />
  </fieldset>

  <fieldset class="form-group">
 <label for="password">Password:</label>
 <input type="password" name="password" class="form-control" required />
  </fieldset>

  <fieldset class="form-group">
 <label for="cpassword">Confirm Password:</label>
 <input type="password" name="cpassword" class="form-control" required />
  </fieldset>

  <fieldset>
    <button type="submit" class="btn">Register</button>
  </fieldset>
</form>

接下来是数据库的表结构:

CREATE TABLE IF NOT EXISTS `user` (
 `id` INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY,
 `fname` VARCHAR(255) ,
 `lname` VARCHAR(255) ,
 `email` VARCHAR(50) ,
 `password` VARCHAR(50) ,
 `is_active` INT(1) DEFAULT '0',
 `verify_token` VARCHAR(255) ,
 `created_at` TIMESTAMP,
 `updated_at` TIMESTAMP,
);

一旦这个表单被提交了,我们就需要验证用户的输入并且创建一个新用户:

// Validation rules
$rules = array(
  'fname' => 'required|max:255',
  'lname' => 'required|max:255',
 'email' => 'required',
 'password' => 'required|min:6|max:20',
 'cpassword' => 'same:password'
);

$validator = Validator::make(Input::all(), $rules);

// If input not valid, go back to registration page
if($validator->fails()) {
 return Redirect::to('registration')->with('error', $validator->messages()->first())->withInput();
}

$user = new User();
$user->fname = Input::get('fname');
$user->lname = Input::get('lname');
$user->password = Input::get('password');

// You will generate the verification code here and save it to the database

// Save user to the database
if(!$user->save()) {
 // If unable to write to database for any reason, show the error
 return Redirect::to('registration')->with('error', 'Unable to write to database at this time. Please try again later.')->withInput();
}

// User is created and saved to database
// Verification e-mail will be sent here

// Go back to registration page and show the success message
return Redirect::to('registration')->with('success', 'You have successfully created an account. The verification link has been sent to e-mail address you have provided. Please click on that link to activate your account.');

 注册之后,用户的账户仍然是无效的直到用户的邮箱被验证。此功能确认用户是输入电子邮件地址的所有者,并有助于防止垃圾邮件以及未经授权的电子邮件使用和信息泄露。

 整个流程是非常简单的——当一个新用户被创建时,在注册过过程中,一封包含验证链接的邮件便会被发送到用户填写的邮箱地址中。在用户点击邮箱验证链接和确认邮箱地址之前,用户是不能进行登录和使用网站应用的。

 关于验证的链接有几件事情是需要注意的。验证的链接需要包含一个随机生成的token,这个token应该足够长并且只在一段时间段内是有效的,这样做的方法是为了防止网络攻击。同时,邮箱验证中也需要包含用户的唯一标识,这样就可以避免那些攻击多用户的潜在危险。

现在让我们来看看在实践中如何生成一个验证链接:

// We will generate a random 32 alphanumeric string
// It is almost impossible to brute-force this key space
$code = str_random(32);
$user->confirmation_code = $code;

一旦这个验证被创建就把他存储到数据库中,发送给用户:

Mail::send('emails.email-confirmation', array('code' => $code, 'id' => $user->id), function($message)
{
$message->from('my@domain.com', 'Mydomain.com')->to($user->email, $user->fname . ' ' . $user->lname)->subject('Mydomain.com: E-mail confirmation');
});

邮箱验证的内容:

<!DOCTYPE html>
<html lang="en-US">
 <head>
 <meta charset="utf-8" />
 </head>

 <body>
 <p style="margin:0">
  Please confirm your e-mail address by clicking the following link:
  <a href="http://mydomain.com/verify?code=<?php echo $code; ?>&user=<?php echo $id; ?>"></a>
 </p>
 </body>
</html>

现在让我们来验证一下它是否可行:

$user = User::where('id', '=', Input::get('user'))
  ->where('is_active', '=', 0)
  ->where('verify_token', '=', Input::get('code'))
  ->where('created_at', '>=', time() - (86400 * 2))
  ->first();

if($user) {
 $user->verify_token = null;
 $user->is_active = 1;

 if(!$user->save()) {
 // If unable to write to database for any reason, show the error
 return Redirect::to('verify')->with('error', 'Unable to connect to database at this time. Please try again later.');
 }

 // Show the success message
 return Redirect::to('verify')->with('success', 'You account is now active. Thank you.');
}

// Code not valid, show error message
return Redirect::to('verify')->with('error', 'Verification code not valid.');

结论:
上面展示的代码只是一个教程示例,并且没有通过足够的测试。在你的web应用中使用的时候请先测试一下。上面的代码是在Laravel框架中完成的,但是你可以很轻松的把它迁移到其他的PHP框架中。同时,验证链接的有效时间为48小时,之后就过期。引入一个工作队列就可以很好的及时处理那些已经过期的验证链接。

本文实PHPChina原创翻译,原文转载于http://www.phpchina.com/portal.php?mod=view&aid=39888,小编认为这篇文章很具有学习的价值,分享给大家,希望对大家的学习有所帮助。

PHP 相关文章推荐
两种php调用Java对象的方法
Oct 09 PHP
php基础知识:函数基础知识
Dec 13 PHP
PHP 的 __FILE__ 常量
Jan 15 PHP
DedeCms模板安装/制作概述
Mar 11 PHP
PHP最常用的2种设计模式工厂模式和单例模式介绍
Aug 14 PHP
Php header()函数语法及使用代码
Nov 04 PHP
PHP获取文件的MD5值并判断是否被修改的例子
Jun 19 PHP
fckeditor上传文件按日期存放及重命名方法
May 22 PHP
ThinkPHP 3使用OSS的方法
Jul 19 PHP
php实现微信分享朋友链接功能
Feb 18 PHP
php判断目录存在的简单方法
Sep 26 PHP
laravel框架模型、视图与控制器简单操作示例
Oct 10 PHP
PHP微信公众号自动发送红包API
Jun 01 #PHP
PHP模块化安装教程
Jun 01 #PHP
深入理解PHP之源码目录结构与功能说明
Jun 01 #PHP
基于PHP生成简单的验证码
Jun 01 #PHP
深入理解PHP原理之执行周期分析
Jun 01 #PHP
深入理解PHP之OpCode原理详解
Jun 01 #PHP
深入理解PHP中的count函数
May 31 #PHP
You might like
PHP 和 XML: 使用expat函数(二)
2006/10/09 PHP
php的array_multisort()使用方法介绍
2012/05/16 PHP
destoon之一键登录设置
2014/06/21 PHP
PHP获取数组长度或某个值出现次数的方法
2015/02/11 PHP
php实现查询功能(数据访问)
2017/05/23 PHP
简单实用的PHP文本缓存类实例
2019/03/22 PHP
PHP容器类的两种实现方式示例
2019/07/24 PHP
javascript hashtable 修正版 下载
2010/12/30 Javascript
判断对象是否Window的实现代码
2012/01/10 Javascript
Javascript Throttle &amp; Debounce应用介绍
2013/03/19 Javascript
javascript预加载图片、css、js的方法示例介绍
2013/10/14 Javascript
javascript里绝对用的上的字符分割函数总结
2014/07/31 Javascript
windows8.1+iis8.5下安装node.js开发环境
2014/12/12 Javascript
14个有用的Jquery技巧分享
2015/01/08 Javascript
jquery插件uploadify多图上传功能实现代码
2016/08/12 Javascript
jQuery操作之效果详解
2017/05/19 jQuery
Vue.js结合Ueditor富文本编辑器的实例代码
2017/07/11 Javascript
jQuery中.attr()和.data()的区别分析
2017/09/03 jQuery
使用js实现将后台传入的json数据放在前台显示
2018/08/06 Javascript
iview tabs 顶部导航栏和模块切换栏的示例代码
2019/03/04 Javascript
JavaScript实现随机点名小程序
2020/10/29 Javascript
python检测lvs real server状态
2014/01/22 Python
跟老齐学Python之坑爹的字符编码
2014/09/28 Python
python 打印对象的所有属性值的方法
2016/09/11 Python
python3获取当前文件的上一级目录实例
2018/04/26 Python
matplotlib.pyplot画图 图片的二进制流的获取方法
2018/05/24 Python
彻底解决Python包下载慢问题
2020/11/15 Python
CSS3中的content属性使用示例
2015/07/20 HTML / CSS
微软中国官方旗舰店:销售Surface、Xbox One、笔记本电脑、Office
2018/07/23 全球购物
Diptyque英国官方网站:源自法国的知名香氛品牌
2019/08/28 全球购物
为什么在使用动态 SQL 语句时必须为低层数据库对象授予权限
2012/12/13 面试题
农场厂长岗位职责
2013/12/28 职场文书
股东出资证明书范例
2014/10/04 职场文书
2014年单位法制宣传日活动总结
2014/11/01 职场文书
2016继续教育研修日志
2015/11/13 职场文书
mybatis-plus模糊查询指定字段
2022/04/28 Java/Android