Home php教程 PHP源码 php常用正则

php常用正则

May 25, 2016 pm 05:11 PM

php代码

<?php
class Verify{	
/**
 * 验证用户名
 * @param string $value
 * @param int $length
 * @return boolean
 */
	public static function isNames($value, $minLen=2, $maxLen=20, $charset=&#39;ALL&#39;){
		if(empty($value))
			return false;
		switch($charset){
			case &#39;EN&#39;: $match = &#39;/^[_\w\d]{&#39;.$minLen.&#39;,&#39;.$maxLen.&#39;}$/iu&#39;;
				break;
			case &#39;CN&#39;:$match = &#39;/^[_\x{4e00}-\x{9fa5}\d]{&#39;.$minLen.&#39;,&#39;.$maxLen.&#39;}$/iu&#39;;
				break;
			default:$match = &#39;/^[_\w\d\x{4e00}-\x{9fa5}]{&#39;.$minLen.&#39;,&#39;.$maxLen.&#39;}$/iu&#39;;
		}
		return preg_match($match,$value);
	}
	
	/**
	 * 验证密码
	 * @param string $value
	 * @param int $length
	 * @return boolean
	 */
	public static function isPWD($value,$minLen=5,$maxLen=16){
		$match=&#39;/^[\\~!@#$%^&*()-_=+|{}\[\],.?\/:;\&#39;\"\d\w]{&#39;.$minLen.&#39;,&#39;.$maxLen.&#39;}$/&#39;;
		$v = trim($value);
		if(empty($v)) 
			return false;
		return preg_match($match,$v);
	}
	
	/**
	 * 验证eamil
	 * @param string $value
	 * @param int $length
	 * @return boolean
	 */
	public static function isEmail($value,$match=&#39;/^[\w\d]+[\w\d-.]*@[\w\d-.]+\.[\w\d]{2,10}$/i&#39;){
		$v = trim($value);
		if(empty($v)) 
			return false;
		return preg_match($match,$v);
	}
	
	/**
	 * 验证电话号码
	 * @param string $value
	 * @return boolean
	 */
	public static function isTelephone($value,$match=&#39;/^0[0-9]{2,3}[-]?\d{7,8}$/&#39;){
		$v = trim($value);
		if(empty($v)) 
			return false;
		return preg_match($match,$v);
	}
	
	/**
	 * 验证手机
	 * @param string $value
	 * @param string $match
	 * @return boolean
	 */
	public static function isMobile($value,$match=&#39;/^[(86)|0]?(13\d{9})|(15\d{9})|(18\d{9})$/&#39;){
		$v = trim($value);
		if(empty($v)) 
			return false;
		return preg_match($match,$v);
	}
	/**
	 * 验证邮政编码
	 * @param string $value
	 * @param string $match
	 * @return boolean
	 */
	public static function isPostcode($value,$match=&#39;/\d{6}/&#39;){
		$v = trim($value);
		if(empty($v)) 
			return false;
		return preg_match($match,$v);
	}
	/**
	 * 验证IP
	 * @param string $value
	 * @param string $match
	 * @return boolean
	 */
	public static function isIP($value,$match=&#39;/^(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])$/&#39;){
		$v = trim($value);
		if(empty($v))
			return false;
		return preg_match($match,$v);
	}
	
	/**
	 * 验证身份证号码
	 * @param string $value
	 * @param string $match
	 * @return boolean
	 */
	public static function isIDcard($value,$match=&#39;/^\d{6}((1[89])|(2\d))\d{2}((0\d)|(1[0-2]))((3[01])|([0-2]\d))\d{3}(\d|X)$/i&#39;){
		$v = trim($value);
		if(empty($v)) 
			return false;
		else if(strlen($v)>18) 
			return false;
		return preg_match($match,$v);
	}
	
	/**
	 * *
	 * 验证URL
	 * @param string $value
	 * @param string $match
	 * @return boolean
	 */
	public static function isURL($value,$match=&#39;/^(http:\/\/)?(https:\/\/)?([\w\d-]+\.)+[\w-]+(\/[\d\w-.\/?%&=]*)?$/&#39;){
		$v = strtolower(trim($value));
		if(empty($v)) 
			return false;
		return preg_match($match,$v);	
	}
}
?>
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)