Home  >  Article  >  Backend Development  >  Summary of usage examples of mobile phone number verification in php

Summary of usage examples of mobile phone number verification in php

伊谢尔伦
伊谢尔伦Original
2017-06-11 09:53:192471browse

Copy the code as follows:

1. php verify mobile phone number (supports location query and encoding as UTF8)_PHP tutorial

Introduction: PHP verify mobile phone number (supports location query and encoding is UTF8). Copy the code as follows: ?php // Mobile phone number verification function checkMobileValidity($mobilephone){ $exp = "/^13[0-9]{1}[0-9]{8}$|15[012356789]{1 }[0-9]{8}$|18[012356789]{1}[0-9]{8}$|14[

2. php regular verification -PHP mobile phone number verification (13,14,15,17,18)

Introduction: PHP regular verification -PHP mobile phone number verification (13,14,15,17, 18)

3. php verification mobile phone number (supports location query and encoding as UTF8)

Introduction: This article will implement the following functions: mobile phone number verification/mobile phone number ownership/convert string encoding to UTF8. Friends who are interested in this can refer to it. Maybe this article will be helpful to you

4. Looking for js code that can verify the mobile phone number entered by the user and pass it into the background code

Introduction: The front-end page is as follows {code... } The background sending method is sendVerifyMessage, and the corresponding route is domain/send-verify-message. The js code can verify the mobile phone number entered by the user and pass it into the background code

. 5. php Verify the mobile phone number to determine where the mobile phone number belongs

Introduction:?php//Mobile phone number verification function checkMobileValidity($mobilephone){$exp = /^ 13[0-9]{1}[0-9]{8}$|15[012356789]{1}[0-9]{8}$|18[012356789]{1}[0-9]{8 }$|14[57]{1}[0-9]$/;if(preg_match($exp,$mobilephone)){return true;}else{return false;}}//Mobile phone number return

6. PHP mobile phone number verification function (13,14,15,17,18)

Introduction: None Details None /*** Verify whether it is a mobile phone number * * @param string $phone Number to be verified * @return boolean Returns false if verification fails, returns true if verification succeeds*/function isTelNumber($phone) {if (strlen ( $phone ) != 11 || ! preg_match ( '/^1[3|4|5|7|8][0-9] d{4,8}$

7. php verification mobile phone number (supports location query and encoding as UTF8)_php skills

Introduction: This article will implement the following functions: mobile phone number verification/mobile phone number ownership/convert string encoding to UTF8. Friends who are interested in this can refer to it. Maybe this article will be helpful to you

The above is the detailed content of Summary of usage examples of mobile phone number verification in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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