RegExpPattern.php 246 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <?php /** * Created by PhpStorm. * User: billy * Date: 11/02/2017 * Time: 5:20 PM */ namespace App\Common; class RegExpPattern { /** * 验证手机号 */ const REGEX_MOBILE = '/^1[34578]\d{9}$/'; //验证用户名 }