这篇文章主要介绍了php可扩展的验证类,实例分析了php针对邮件、手机号、URL等常用的验证技巧,非常具有实用价值,需要的朋友可以参考下
本文实例讲述了php可扩展的验证类。分享给大家供大家参考。具体分析如下:
这里介绍一个可扩展的php验证类,
类里面可以的各类验证可自行调整实现,现在为基本实现方式。
需要添加规则的话, 直接定义方法,方法名即为规则名称。具体参考使用方法。
require_once('./Validator.class.php'); $data = array( 'nickname' => 'heno' , 'realname' => 'steven', 'age' => 25, 'mobile' => '1521060426'); $validator = new Validator($data); $validator->setRule('nickname', 'required'); $validator->setRule('realname', array('length' => array(1,6), 'required')); $validator->setRule('age', array('required', 'digit')); $validator->setRule('mobile', array('mobile')); $result = $validator->validate(); var_dump($result); var_dump($validator->getResultInfo());
Validator.class.php文件如下:
_data = $data;
}
}
/**
* 设置校验规则
* @param string $var 带校验项key
* @param mixed $rule 校验规则
* @return void
*/
public function setRule($var, $rule)
{
$this->_ruleList[$var] = $rule;
}
/**
* 检验数据
* @param array $data
*
* $data = array('nickname' => 'heno' , 'realname' => 'steven', 'age' => 25);
* $validator = new Validator($data);
* $validator->setRule('nickname', 'required');
* $validator->setRule('realname', array('lenght' => array(1,4), 'required'));
* $validator->setRule('age', array('required', 'digit'));
* $result = $validator->validate();
* var_dump($validator->getResultInfo());
*
* @return bool
*/
public function validate($data = null)
{
$result = true;
/* 如果没有设置校验规则直接返回 true */
if ($this->_ruleList === null || !count($this->_ruleList)) {
return $result;
}
/* 已经设置规则,则对规则逐条进行校验 */
foreach ($this->_ruleList as $ruleKey => $ruleItem) {
/* 如果检验规则为单条规则 */
if (!is_array($ruleItem)) {
$ruleItem = trim($ruleItem);
if (method_exists($this, $ruleItem)) {
/* 校验数据,保存校验结果 */
$tmpResult = $this->$ruleItem($ruleKey);
if (!$tmpResult) {
$this->_resultInfo[$ruleKey][$ruleItem] = $tmpResult;
$result = false;
}
}
continue;
}
/* 校验规则为多条 */
foreach ($ruleItem as $ruleItemKey => $rule) {
if (!is_array($rule)) {
$rule = trim($rule);
if (method_exists($this, $rule)) {
/* 校验数据,,设置结果集 */
$tmpResult = $this->$rule($ruleKey);
if (!$tmpResult) {
$this->_resultInfo[$ruleKey][$rule] = $tmpResult;
$result = false;
}
}
} else {
if (method_exists($this, $ruleItemKey)) {
/* 校验数据,设置结果集 */
$tmpResult = $this->$ruleItemKey($ruleKey, $rule);
if (!$tmpResult) {
$this->_resultInfo[$ruleKey][$ruleItemKey] = $tmpResult;
$result = false;
}
}
}
}
}
return $result;
}
/**
* 获取校验结果数据
* @return [type] [description]
*/
public function getResultInfo()
{
return $this->_resultInfo;
}
/**
* 校验必填参数
* @param string $varName 校验项
* @return bool
*/
public function required($varName)
{
$result = false;
if (is_array($this->_data) && isset($this->_data[$varName])) {
$result = true;
}
return $result;
}
/**
* 校验参数长度
*
* @param string $varName 校验项
* @param array $lengthData array($minLen, $maxLen)
* @return bool
*/
public function length($varName, $lengthData)
{
$result = true;
/* 如果该项没有设置,默认为校验通过 */
if ($this->required($varName)) {
$varLen = mb_strlen($this->_data[$varName]);
$minLen = $lengthData[0];
$maxLen = $lengthData[1];
if ($varLen $maxLen) {
$result = true;
}
}
return $result;
}
/**
* 校验邮件
* @param string $varName 校验项
* @return bool
*/
public function email($varName)
{
$result = true;
/* 如果该项没有设置,默认为校验通过 */
if ($this->required($varName)) {
$email = trim($this->_data[$varName]);
if (preg_match('/^[-\w]+?@[-\w.]+?$/', $email)) {
$result = false;
}
}
return $result;
}
/**
* 校验手机
* @param string $varName 校验项
* @return bool
*/
public function mobile($varName)
{
$result = true;
/* 如果该项没有设置,默认为校验通过 */
if ($this->required($varName)) {
$mobile = trim($this->_data[$varName]);
if (!preg_match('/^1[3458]\d{10}$/', $mobile)) {
$result = false;
}
}
return $result;
}
/**
* 校验参数为数字
* @param string $varName 校验项
* @return bool
*/
public function digit($varName)
{
$result = false;
if ($this->required($varName) && is_numeric($this->_data[$varName])) {
$result = true;
}
return $result;
}
/**
* 校验参数为身份证
* @param string $varName 校验项
* @return bool
*/
public function ID($ID)
{
}
/**
* 校验参数为URL
* @param string $varName 校验项
* @return bool
*/
public function url($url)
{
$result = true;
/* 如果该项没有设置,默认为校验通过 */
if ($this->required($varName)) {
$url = trim($this->_data[$varName]);
if(!preg_match('/^(http[s]?::)?\w+?(\.\w+?)$/', $url)) {
$result = false;
}
}
return $result;
}
}
?>
希望本文所述对大家的php程序设计有所帮助。

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

螳螂BT
Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。

MinGW - 适用于 Windows 的极简 GNU
这个项目正在迁移到osdn.net/projects/mingw的过程中,你可以继续在那里关注我们。MinGW:GNU编译器集合(GCC)的本地Windows移植版本,可自由分发的导入库和用于构建本地Windows应用程序的头文件;包括对MSVC运行时的扩展,以支持C99功能。MinGW的所有软件都可以在64位Windows平台上运行。

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

SublimeText3 英文版
推荐:为Win版本,支持代码提示!

禅工作室 13.0.1
功能强大的PHP集成开发环境