php and javascript regular verification
<code>if (!preg_match('[/^1[3|5|7|8][0-9]\d{8}$/', $phone)) { return "PleaseEnterYourPhoneNumber"; }</code>
Both front and backend are /^1[3|5|7|8d{8}$/ regular
Front-end verification has been used
Background execution return
Some people said on their website that the regular library of php is different from js
Is there any way to solve it
Reply content:
<code>if (!preg_match('[/^1[3|5|7|8][0-9]\d{8}$/', $phone)) { return "PleaseEnterYourPhoneNumber"; }</code>
Both front and backend are /^1[3|5|7|8d{8}$/ regular
Front-end verification has been used
Background execution return
Some people said on their website that the regular library of php is different from js
Is there any way to solve it
I can’t stand it anymore...
These regular expressions on the Internet are really copied here and there. If one has a problem with the writing, then everyone has a problem. Why don’t you want to look at the regular expressions yourself[0-9]
and d
are completely equivalent. Why should we separate them into [0-9]d{8}
? Just write d{9}
instead of
So change the regular expression to /^1[3|5|7|8]d{9}$/
!
(The [
at the beginning of your code must have been copied too much or entered by mistake when copying)
As for your question, please refer to the following two pieces of code. The effects are completely equivalent:
PHP:
$re = '/^1[3|5|7|8]\d{9}$/'; $str = '13012345678'; if (preg_match($re, $str)) { echo '验证通过'; } else { echo '验证失败'; }
Javascript:
var re = /^1[3|5|7|8]\d{9}$/; var str = '13012345678'; if (re.test(str)) { console.log('验证通过'); } else { console.log('验证失败'); }
<code>//假设前台有个表单的name是phone $phone=$_POST['phone']; if ($phone != '[/^1[3|5|7|8][0-9]\d{8}$/'){ return "PleaseEnterYourPhoneNumber"; }</code>
<code><?php if (!preg_match('[/^1[3|5|7|8][0-9]\d{8}$/', $phone)) { return "PleaseEnterYourPhoneNumber"; } ?></code>

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

AI Hentai Generator
Generate AI Hentai for free.

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

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

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

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

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

Validator can be created by adding the following two lines in the controller.
