个人需求,仿着CI的表单验证写了一个自己的验证类

1.定义验证类

<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
// required No 如果元素为空,则返回FALSE
// matches Yes 如果表单元素的值与参数中对应的表单字段的值不相等,则返回FALSE matches[form_item]
// is_unique Yes 如果表单元素的值与指定数据表栏位有重复,则返回False(译者注:比如is_unique[User.Email],那么验证类会去查找User表中Email栏位有没有与表单元素一样的值,如存重复,则返回false,这样开发者就不必另写Callback验证代码。) is_unique[table.field]
// min_length Yes 如果表单元素值的字符长度少于参数中定义的数字,则返回FALSE min_length[6]
// max_length Yes 如果表单元素值的字符长度大于参数中定义的数字,则返回FALSE max_length[12]
// exact_length Yes 如果表单元素值的字符长度与参数中定义的数字不符,则返回FALSE exact_length[8]
// greater_than Yes 如果表单元素值是非数字类型,或小于参数定义的值,则返回FALSE greater_than[8]
// less_than Yes 如果表单元素值是非数字类型,或大于参数定义的值,则返回FALSE less_than[8]
// alpha No 如果表单元素值中包含除字母以外的其他字符,则返回FALSE
// alpha_numeric No 如果表单元素值中包含除字母和数字以外的其他字符,则返回FALSE
// alpha_dash No 如果表单元素值中包含除字母/数字/下划线/破折号以外的其他字符,则返回FALSE
// numeric No 如果表单元素值中包含除数字以外的字符,则返回 FALSE
// integer No 如果表单元素中包含除整数以外的字符,则返回FALSE
// decimal No 如果表单元素中包含非十进制数字时,则返回FALSE
// is_natural No 如果表单元素值中包含了非自然数的其他数值 (其他数值不包括零),则返回FALSE。自然数形如:0,1,2,3....等等。
// is_natural_no_zero No 如果表单元素值包含了非自然数的其他数值 (其他数值包括零),则返回FALSE。非零的自然数:1,2,3.....等等。
// valid_email No 如果表单元素值包含不合法的email地址,则返回FALSE
// valid_emails No 如果表单元素值中任何一个值包含不合法的email地址(地址之间用英文逗号分割),则返回FALSE。
// valid_ip No 如果表单元素的值不是一个合法的IP地址,则返回FALSE。通过可选参数"IPv4"或"IPv6"来指定 IP 地址格式。
// valid_base64 No 如果表单元素的值包含除了base64 编码字符之外的其他字符,则返回FALSE。 class Validation { protected $_field_data = array();
protected $_config_rules = array(); public function __construct()
{
//获取CI对象
$this->CI =& get_instance(); //读取验证类配置文件 TODO } public function set_rules($field, $rules = '')
{
//如果field是数组,我们遍历它并递归调用这些验证方法
if (is_array($field)) {
foreach ($field as $key => $row) {
//检查数组数据
if (!isset($row['field']) OR !isset($row['rules'])){
continue;
} $this->set_rules($row['field'], $row['rules']);
}
return $this;
} //不存在$field或者为空,返回
if (!is_string($field) OR $field == '') {
return $this;
} //如果field是数组,拆分
if (strpos($field, '[') !== FALSE AND preg_match_all('/\[(.*?)\]/', $field, $matches)) { foreach ($matches[1] as $index) {
if ($index != ''){
$indexes[] = $index;
}
} $is_array = TRUE;
}
else {
$indexes = array();
$is_array = FALSE;
} //设置字段规则
$this->_field_data[$field] = array(
'field' => $field,
'rules' => $rules,
'is_array' => $is_array,
'keys' => $indexes,
'data' => NULL,
); return $this;
} public function _reduce_array($array, $keys, $i = 0)
{
if(is_array($array)) {
//递归查询每个键名下的数组
if (isset($keys[$i])){
if (isset($array[$key[$i]])) {
$array = $this->_reduce_array($array[$key[$i]], $keys, ($i+1));
}
else{
return NULL;
}
}
else {
return $array;
}
} return $array;
} public function _execute($row, $cycles = 0)
{
$is_valid = TRUE;
//如果字段数据data是数组,我们执行递归调用
if (is_array($row['data'])) {
foreach ($data as $key => $value) {
if ( ! $this->_execute($row, $cycles)) {
$is_valid = FALSE;
break;
} $cycles++;
} return $is_valid;
}
extract($row);
// -------------------------------------------------------------------- //如果字段为空,并不要求,没必要进行验证
$callback = FALSE;
if (!in_array('required', $rules) AND is_null($data)){
return $is_valid;
} // -------------------------------------------------------------------- //应用到复选框TODO // -------------------------------------------------------------------- //遍历并执行验证
foreach ($rules as $key => $rule) { //如果验证规则带有回调函数
$callback = FALSE;
if (substr($rule, 0, 9) == 'callback_'){
$rule = substr($rule, 9);
$callback = TRUE;
} //如果验证规则带有参数
$param = FALSE;
if (preg_match("/(.*?)\[(.*)\]/", $rule, $match)){
$rule = $match[1];
$param= $match[2];
} // 调用对应规则的方法验证
// 回调函数验证
if ($callback === TRUE) { if (!method_exists($this->CI, $rule)){
continue;
} $is_valid = $this->CI->$rule($data, $param); //如果不要求并验证结果为真,不进行其他规则的验证
if ( ! in_array('required', $rules, TRUE) AND $is_valid !== FALSE)
{
continue;
}
}
else{
//如果验证类中不包含该验证方法,尝试php内置方法
if (!method_exists($this, $rule)) { if (function_exists($rule)) {
$is_valid = $rule($data);
}
else {
log_message('error', "找不到对应的验证方法:".$rule);
} continue;
} $is_valid = $this->$rule($data, $param);
} //如果验证不通过,记录错误
if ($is_valid === FALSE) {
if (isset($this->_error_messages[$rule])) {
log_message('error', $field.$cycles.'验证'.$rule.'不通过');
}
return $is_valid;
} } return TRUE;
} public function run($data)
{
//如果没有设置验证规则
if (count($this->_field_data) == 0) {
//检查是否设置默认验证规则配置文件
//TODO
} foreach ($this->_field_data as $field => $row) { //根据field的名字是数组或者字符串,决定我们从哪里获取它的值
if ($row['is_array'] == TRUE) {
$row['data'] = $this->_reduce_array($data, $row['keys']);//获取多维数组的值
}
else {
if (isset($data[$field]) AND $data[$field] != ''){
$row['data'] = $data[$field];
}
} //执行验证
if (!$this->_execute($row)){
return FALSE;
}
} return TRUE;
} public function required($str)
{
log_message('error',$str);
if (!is_array($str)) {
return (trim($str) == '') ? FALSE : TRUE;
}
else {
return (!empty($str));
}
} /**
* Performs a Regular Expression match test.
*
* @access public
* @param string
* @param regex
* @return bool
*/
public function regex_match($str, $regex)
{
if ( ! preg_match($regex, $str))
{
return FALSE;
} return TRUE;
} // -------------------------------------------------------------------- /**
* Match one field to another
*
* @access public
* @param string
* @param field
* @return bool
*/
public function is_unique($str, $field)
{
list($table, $field)=explode('.', $field);
$query = $this->CI->db->limit(1)->get_where($table, array($field => $str)); return $query->num_rows() === 0;
} // -------------------------------------------------------------------- /**
* Minimum Length
*
* @access public
* @param string
* @param value
* @return bool
*/
public function min_length($str, $val)
{
if (preg_match("/[^0-9]/", $val))
{
return FALSE;
} if (function_exists('mb_strlen'))
{
return (mb_strlen($str) < $val) ? FALSE : TRUE;
} return (strlen($str) < $val) ? FALSE : TRUE;
} // -------------------------------------------------------------------- /**
* Max Length
*
* @access public
* @param string
* @param value
* @return bool
*/
public function max_length($str, $val)
{
if (preg_match("/[^0-9]/", $val))
{
return FALSE;
} if (function_exists('mb_strlen'))
{
return (mb_strlen($str) > $val) ? FALSE : TRUE;
} return (strlen($str) > $val) ? FALSE : TRUE;
} // -------------------------------------------------------------------- /**
* Exact Length
*
* @access public
* @param string
* @param value
* @return bool
*/
public function exact_length($str, $val)
{
if (preg_match("/[^0-9]/", $val))
{
return FALSE;
} if (function_exists('mb_strlen'))
{
return (mb_strlen($str) != $val) ? FALSE : TRUE;
} return (strlen($str) != $val) ? FALSE : TRUE;
} // -------------------------------------------------------------------- /**
* Valid Email
*
* @access public
* @param string
* @return bool
*/
public function valid_email($str)
{
return ( ! preg_match("/^([a-z0-9\+_\-]+)(\.[a-z0-9\+_\-]+)*@([a-z0-9\-]+\.)+[a-z]{2,6}$/ix", $str)) ? FALSE : TRUE;
} // -------------------------------------------------------------------- /**
* Valid Emails
*
* @access public
* @param string
* @return bool
*/
public function valid_emails($str)
{
if (strpos($str, ',') === FALSE)
{
return $this->valid_email(trim($str));
} foreach (explode(',', $str) as $email)
{
if (trim($email) != '' && $this->valid_email(trim($email)) === FALSE)
{
return FALSE;
}
} return TRUE;
} // -------------------------------------------------------------------- /**
* Validate IP Address
*
* @access public
* @param string
* @param string "ipv4" or "ipv6" to validate a specific ip format
* @return string
*/
public function valid_ip($ip, $which = '')
{
return $this->CI->input->valid_ip($ip, $which);
} // -------------------------------------------------------------------- /**
* Alpha
*
* @access public
* @param string
* @return bool
*/
public function alpha($str)
{
return ( ! preg_match("/^([a-z])+$/i", $str)) ? FALSE : TRUE;
} // -------------------------------------------------------------------- /**
* Alpha-numeric
*
* @access public
* @param string
* @return bool
*/
public function alpha_numeric($str)
{
return ( ! preg_match("/^([a-z0-9])+$/i", $str)) ? FALSE : TRUE;
} // -------------------------------------------------------------------- /**
* Alpha-numeric with underscores and dashes
*
* @access public
* @param string
* @return bool
*/
public function alpha_dash($str)
{
return ( ! preg_match("/^([-a-z0-9_-])+$/i", $str)) ? FALSE : TRUE;
} // -------------------------------------------------------------------- /**
* Numeric
*
* @access public
* @param string
* @return bool
*/
public function numeric($str)
{
return (bool)preg_match( '/^[\-+]?[0-9]*\.?[0-9]+$/', $str); } // -------------------------------------------------------------------- /**
* Is Numeric
*
* @access public
* @param string
* @return bool
*/
public function is_numeric($str)
{
return ( ! is_numeric($str)) ? FALSE : TRUE;
} // -------------------------------------------------------------------- /**
* Integer
*
* @access public
* @param string
* @return bool
*/
public function integer($str)
{
return (bool) preg_match('/^[\-+]?[0-9]+$/', $str);
} // -------------------------------------------------------------------- /**
* Decimal number
*
* @access public
* @param string
* @return bool
*/
public function decimal($str)
{
return (bool) preg_match('/^[\-+]?[0-9]+\.[0-9]+$/', $str);
} // -------------------------------------------------------------------- /**
* Greather than
*
* @access public
* @param string
* @return bool
*/
public function greater_than($str, $min)
{
if ( ! is_numeric($str))
{
return FALSE;
}
return $str > $min;
} // -------------------------------------------------------------------- /**
* Less than
*
* @access public
* @param string
* @return bool
*/
public function less_than($str, $max)
{
if ( ! is_numeric($str))
{
return FALSE;
}
return $str < $max;
} // -------------------------------------------------------------------- /**
* Is a Natural number (0,1,2,3, etc.)
*
* @access public
* @param string
* @return bool
*/
public function is_natural($str)
{
return (bool) preg_match( '/^[0-9]+$/', $str);
} // -------------------------------------------------------------------- /**
* Is a Natural number, but not a zero (1,2,3, etc.)
*
* @access public
* @param string
* @return bool
*/
public function is_natural_no_zero($str)
{
if ( ! preg_match( '/^[0-9]+$/', $str))
{
return FALSE;
} if ($str == 0)
{
return FALSE;
} return TRUE;
} // -------------------------------------------------------------------- /**
* Valid Base64
*
* Tests a string for characters outside of the Base64 alphabet
* as defined by RFC 2045 http://www.faqs.org/rfcs/rfc2045
*
* @access public
* @param string
* @return bool
*/
public function valid_base64($str)
{
return (bool) ! preg_match('/[^a-zA-Z0-9\/\+=]/', $str);
}
}

因为我只支持前台能运行js的用户,只是防止非法人跨过浏览器直接访问

所以,我的验证类阉割了原来显示验证错误的功能,一旦有一个验证不通过,记录日志并直接退出!简单粗暴 哈哈

另外,该类还有没有完善的地方,复选框部分代码,和读取配置文件设置默认验证规则的代码,回调函数只能限制在控制器的问题,待完善

2.加入自动加载中

3.配置使用 在控制器中加入如下代码,

//验证$input
$rules = array(
array('field' => 'name','rules' => array('required', 'callback_test'))
);
if (!$this->validation->set_rules($rules)->run($input)){
exit('请检查是否javascript不生效了!');
}

Codeigniter-验证数据类的更多相关文章

  1. XML序列化 判断是否是手机 字符操作普通帮助类 验证数据帮助类 IO帮助类 c# Lambda操作类封装 C# -- 使用反射(Reflect)获取dll文件中的类型并调用方法 C# -- 文件的压缩与解压(GZipStream)

    XML序列化   #region 序列化 /// <summary> /// XML序列化 /// </summary> /// <param name="ob ...

  2. Java常用工具类---XML工具类、数据验证工具类

    package com.jarvis.base.util; import java.io.File;import java.io.FileWriter;import java.io.IOExcepti ...

  3. Kotlin——最详细的数据类、密封类详解

    在前面几个章节章节中,详细的讲解了Koltin中的接口类(Interface).枚举类(Enmu),还不甚了解的可以查看我的上一篇文章Kotlin--接口类.枚举类详解.当然,在Koltin中,除了接 ...

  4. Kotlin 数据类与密封类

    数据类 Kotlin 可以创建一个只包含数据的类,关键字为 data: data class User(val name: String, val age: Int) 编译器会自动的从主构造函数中根据 ...

  5. JSR303中的来验证数据信息

    spring mvc之实现简单的用户管理三 博客分类: spring spring mvc spring mvc dispatcherServlet springspring mvcbean vali ...

  6. 代码的坏味道(16)——纯稚的数据类(Data Class)

    坏味道--纯稚的数据类(Data Class) 特征 纯稚的数据类(Data Class) 指的是只包含字段和访问它们的getter和setter函数的类.这些仅仅是供其他类使用的数据容器.这些类不包 ...

  7. 【C#】让工具栏ToolStrip能触发焦点控件的Leave、Validating、DataError等事件以验证数据

    ----------------更新:2014-04-21--------------- 蒙doggo兄指教,得知有更好的方法可以代替蹩脚的0尺寸Button法,即调用窗体的验证方法Form.Vali ...

  8. 一个基于POP3协议进行邮箱账号验证的类

    最近老陈要针对企业邮箱做一些开发,以对接企业OA神马的,但企业邮箱唯独没有开放账号密码验证功能,很恼火!不得已,翻出早些年的Asp代码改编成了C#类,实现了一个C#下的通过POP3协议进行邮箱账号验证 ...

  9. 验证工具类 - ValidateUtils.java

    验证工具类,提供验证email格式.是否ipv4.是否ipv6.是否中文.是否数字.正则表达式验证的方法. 源码如下:(点击下载 - ValidateUtils.java .commons-lang- ...

  10. 正则表达式验证工具类RegexUtils.java

    Java 表单注册常用正则表达式验证工具类,常用正则表达式大集合. 1. 电话号码 2. 邮编 3. QQ 4. E-mail 5. 手机号码 6. URL 7. 是否为数字 8. 是否为中文 9. ...

随机推荐

  1. 如何在 Linux 终端下创建新的文件系统/分区

    在 Linux 中创建分区或新的文件系统通常意味着一件事:安装 Gnome Parted 分区编辑器(GParted).对于大多数 Linux 用户而言,这是唯一的办法.不过,你是否考虑过在终端创建这 ...

  2. yii CListView中使用CArrayDataProvider自定义数组作为数据

    CArrayDataProvider类手册: http://www.yiichina.com/api/CArrayDataProvider 在yii中无论是CListView还是CGridView,对 ...

  3. 使用NppExec插件让Notepad++编译运行Java、Python

    一直希望有一个轻量级的编辑器,既可以编辑代码,也可以一键运行.后来有了NotePad++,希望可以配置配置达到目的,配Java的时候上网搜了一堆,基本上互相抄,不解决实际问题,很郁闷.后来琢磨了出来, ...

  4. ASP.NET MVC- VIEW Using the TagBuilder Class to Build HTML Helpers Part 3

    The ASP.NET MVC framework includes  a useful utility class named the TagBuilder class that you can u ...

  5. Spring框架:Spring容器具体解释

    Spring容器 Spring容器能够帮助你管理所有的Bean对象.专业术语称之为IoC控制反转.在传统的程序中.对象的生成都是由开发人员完毕的.而在控制反转中,对象的生成所有都交给框架完毕.这种优点 ...

  6. HDU 1576 A/B 扩展欧几里德算法

    A/B Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submis ...

  7. Java中PreparedStatement和Statement的用法区别(转)

    1. PreparedStatement接口继承Statement, PreparedStatement 实例包含已编译的 SQL 语句,所以其执行速度要快于 Statement 对象.   2.作为 ...

  8. java程序员从笨鸟到菜鸟系列

    http://blog.csdn.net/csh624366188/article/category/888600

  9. DTrace Probes in HotSpot VM----java

    http://docs.oracle.com/javase/6/docs/technotes/guides/vm/dtrace.html http://docs.oracle.com/javase/7 ...

  10. unix进程的环境--unix环境高级编程读书笔记

    http://blog.csdn.net/xiaocainiaoshangxiao/article/category/1800937