


Commonly used PHP various verification regular expression programs_PHP tutorial
Commonly used PHP various verification regular expression programs
The code is as follows | Copy code |
class validator { /** * Checks that a field is exactly the right length. * Constructer PHP4 */ Function validator() { } /** * check a number optional -,+,. values * @param string * @return boolean */ Function is_numeric($val) { return (bool)preg_match('/^[-+]?[0-9]*.?[0-9]+$/', $val); } /** * valid email * @param string * @return boolean */ Function is_email($val) { return (bool)(preg_match("/^([a-z0-9+_-]+)(.[a-z0-9+_-]+)*@([a-z0-9-]+. )+[a-z]{2,6}$/i", $val)); } /** * Valid URL or web address * @param string * @return boolean */ Function is_url($val) { return (bool)preg_match("^((((https?|ftps?|gopher|telnet|nntp)://)|(mailto:|news:))(%[0-9A-Fa-f]{2 }|[-()_.!~*';/?:@&=+$,A-Za-z0-9])+)([).!';/?:,][[:blank: ]])?$", $val); } /** * Valid IP address * @param string * @return boolean */ Function is_ipaddress($val) { return (bool)preg_match("/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?).(25[0 -5]|2[0-4][0-9]|[01]?[0-9][0-9]?).(25[0-5]|2[0-4][0- 9]|[01]?[0-9][0-9]?).(25[0-5]|2[0-4][0-9]|[01]?[0-9][ 0-9]?)$/", $val); } /** * Matches only alpha letters * @param string * @return boolean */ Function is_alpha($val) { return (bool)preg_match("/^([a-zA-Z])+$/i", $val); } /** * Matches alpha and numbers only * @param string * @return boolean */ function is_alphanumeric($val) { return (bool)preg_match("/^([a-zA-Z0-9])+$/i", $val); } /** * Matches alpha ,numbers,-,_ values * @param string * @return boolean */ function is_alphanumericdash($val) { return (bool)preg_match("/^([-a-zA-Z0-9_-])+$/i", $val); } /** * Matches alpha and dashes like -,_ * @param string * @return boolean */ function is_alphadash($val) { return (bool)preg_match("/^([A-Za-z_-])+$/i", $val); } /** *Matches exactly number * @param string * @return boolean */ function is_integer($val) { return is_int($val); } /** * Valid Credit Card * @param string * @return boolean */ function is_creditcard($val) { return (bool)preg_match("/^((4d{3})|(5[1-5]d{2})|(6011)|(7d{3}))-?d{4}-?d{4}-?d{4}|3[4,7]d{13}$/", $val); } /** * check given string length is between given range * @param string * @return boolean */ function is_rangelength($val, $min = '', $max = '') { return (strlen($val) >= $min and strlen($val) <= $max); } /** *Check the string length has minimum length * @param string * @return boolean */ function is_minlength($val, $min) { return (strlen($val) >= (int)$min); } /** * check string length exceeds maximum length * @param string * @return boolean */ function is_maxlength($val, $max) { return (strlen($val) <= (int)$max); } /** * check given number exceeds max values * @param string * @return boolean */ function is_maxvalue($number,$max) { return ($number >$max); } /** * check given number below value * @param string * @return boolean */ function is_minvalue($number) { return ($number < $max); } /** * check given number between given values * @param string * @return boolean */ function is_rangevalue($number,$min,$max) { return ($number >$min and $number<$max); } /** * check for exactly length of string * @param string * @return boolean */ function is_length($val, $length) { return (strlen($val) == (int)$length); } /** * check decimal with . is optional and after decimal places up to 6th precision * @param string * @return boolean */ function is_decimal($val) { return (bool)preg_match("/^d+(.d{1,6})?$/'", $val); } /** * Valid hexadecimal color ,that may have #, * @param string * @return boolean */ function is_hexcolor($color) { return (bool)preg_match('/^#?+[0-9a-f]{3}(?:[0-9a-f]{3})?$/i', $color); } /** * Matches againest given regular expression ,including delimeters * @param string * @return boolean */ function is_regex($val, $expression) { return (bool)preg_match($expression, (string )$val); } /** * compares two any kind of values ,stictly * @param string * @return boolean */ function is_matches($val, $value) { return ($val === $value); } /** * check if field empty string ,orject,array * @param string * @return boolean */ function is_empty($val) { return in_array($val, array(null, false, '', array()), true); } /** * Check if given string matches any format date * @param string * @return boolean */ function is_date($val) { return (strtotime($val) !== false); } /** * check given string againest given array values * @param string * @return boolean */ function is_enum($val, $arr) { return in_array($val, $arr); } /** * Checks that a field matches a v2 md5 string * @param string * @return boolean */ function is_md5($val) { return (bool)preg_match("/[0-9a-f]{32}/i", $val); } /** * Matches base64 enoding string * @param string * @return boolean */ function is_base64($val) { return (bool)!preg_match('/[^a-zA-Z0-9/+=]/', $val); } /** * check if array has unique elements,it must have minimum one element * @param string * @return boolean */ function is_unique($arr) { $arr = (array )$arr; $count1 = count($arr); $count2 = count(array_unique($arr)); return (count1 != 0 and (count1 == $count2)); } /** * Check is rgb color value * @param string * @return boolean */ function is_rgb($val) { return (bool)preg_match("/^(rgb(s*b([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])bs*,s*b([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])bs*,s*b([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])bs*))|(rgb(s*(d?d%|100%)+s*,s*(d?d%|100%)+s*,s*(d?d%|100%)+s*))$/", $val); } /** * is given field is boolean value or not * @param string * @return boolean */ function is_boolean($val) { $booleans = array(1, 0, '1', '0', true, false, true, false); $literals = array('true', 'false', 'yes', 'no'); foreach ($booleans as $bool) { if ($val === $bool) return true; } return in_array(strtolower($val), $literals); } /** * A token that don't have any white space * @param string * @return boolean */ function is_token($val) { return (bool)!preg_match('/s/', $val); } /** * Checks that a field is exactly the right length. * @param string value * @link http://php.net/checkdnsrr not added to Windows until PHP 5.3.0 * @return boolean */ function is_emaildomain($email) { return (bool)checkdnsrr(preg_replace('/^[^@]++@/', '', $email), 'MX'); } /** * Matches a phone number that length optional numbers 7,10,11 * @param string * @return boolean */ function is_phone($number, $lengths = null) { if (!is_array($lengths)) { $lengths = array(7, 10, 11); } $number = preg_replace('/D+/', '', $number); return in_array(strlen($number), $lengths); } /** * check given sting is UTF8 * @param string * @return boolean */ function is_utf8($val) { return preg_match('%(?: [xC2-xDF][x80-xBF] |xE0[xA0-xBF][x80-xBF] |[xE1-xECxEExEF][x80-xBF]{2} |xED[x80-x9F][x80-xBF] |xF0[x90-xBF][x80-xBF]{2} |[xF1-xF3][x80-xBF]{3} |xF4[x80-x8F][x80-xBF]{2} )+%xs', $val); } /** * Given sting is lower cased * @param string * @return boolean */ function is_lower($val) { return (bool)preg_match("/^[a-z]+$/", $val); } /** * Given string is upper cased? * @param string * @return boolean */ function is_upper($val) { return (bool)preg_match("/^[A-Z]+$/", $val); } /** * Checks that given value matches following country pin codes. * at = austria * au = australia * ca = canada * de = german * ee = estonia * nl = netherlands * it = italy * pt = portugal * se = sweden * uk = united kingdom * us = united states * @param String * @param String * @return boolean */ function is_pincode($val, $country = 'us') { $patterns = array('at' => '^[0-9]{4,4}$', 'au' => '^[2-9][0-9]{2,3}$', 'ca' => '^[a-zA-Z].[0-9].[a-zA-Z].s[0-9].[a-zA-Z].[0-9].', 'de' => '^[0-9]{5,5}$', 'ee' => '^[0-9]{5,5}$', 'nl' => '^[0-9]{4,4}s[a-zA-Z]{2,2}$', 'it' => '^[0-9]{5,5}$', 'pt' => '^[0-9]{4,4}-[0-9]{3,3}$', 'se' => '^[0-9]{3,3}s[0-9]{2,2}$', 'uk' => '^([A-Z]{1,2}[0-9]{1}[0-9A-Z]{0,1}) ?([0-9]{1}[A-Z]{1,2})$', 'us' => '^[0-9]{5,5}[-]{0,1}[0-9]{4,4}$'); if (!array_key_exists($country, $patterns)) return false; return (bool)preg_match("/" . $patterns[$country] . "/", $val); } /** * Check given url really exists? * @param string * @return boolean */ function is_urlexists($link) { if (!$this->is_url($link)) return false; return (bool)@fsockopen($link, 80, $errno, $errstr, 30); } /** * Check given sting has script tags * @param string * @return boolean */ function is_jssafe($val) { return (bool)(!preg_match("//", $val)); } /** * given sting has html tags? * @param string * @return boolean */ function is_htmlsafe($val) { return (bool)(!preg_match("/<(.*)>.*$1>/", $val)); } /** * check given sring has multilines * @param string * @return boolean */ function is_multiline($val) { return (bool)preg_match("/[nrt]+/", $val); } /** * check given array key element exists? * @param string * @return boolean */ function is_exists($val, $arr) { return isset($arr[$val]); } /** * is given string is ascii format? * @param string * @return boolean */ function is_ascii($val) { return !preg_match('/[^x00-x7F]/i', $val); } /** * Checks given value again MAC address of the computer * @param string value * @return boolean */ function is_macaddress($val) { return (bool)preg_match('/^([0-9a-fA-F][0-9a-fA-F]:){5}([0-9a-fA-F][0-9a-fA-F])$/', $val); } /** * Checks given value matches us citizen social security number * @param string * @return boolean */ function is_usssn($val) { return (bool)preg_match("/^d{3}-d{2}-d{4}$/", $val); } /** * Checks given value matches date de * @param string * @return boolean */ function is_dateDE($date) { return (bool)preg_match("/^dd?.dd?.ddd?d?$/", $date); } /** * Checks given value matches us citizen social security number * @param string * @return boolean */ function is_dateISO($date) { return (bool)preg_match("/^d{4}[/-]d{1,2}[/-]d{1,2}$/", $date); } /** * Checks given value matches a time zone * +00:00 | -05:00 * @param string * @return boolean */ function is_timezone($val) { return (bool)preg_match("/^[-+]((0[0-9]|1[0-3]):([03]0|45)|14:00)$/", $val); } /** * Time in 24 hours format with optional seconds * 12:15 | 10:26:59 | 22:01:15 * @param string * @return boolean */ function is_time24($val) { return (bool)preg_match("/^(([0-1]?[0-9])|([2][0-3])):([0-5]?[0-9])(:([0-5]?[0-9]))?$/", $val); } /** * Time in 12 hours format with optional seconds * 08:00AM | 10:00am | 7:00pm * @param string * @return boolean */ function is_time12($val) { return (bool)preg_match("/^([1-9]|1[0-2]|0[1-9]){1}(:[0-5][0-9][aApP][mM]){1}$/", $val); } } |

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
