Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 PHP 新手我想做的就是屏蔽输入电话号码,它不允许使用 Javascript 或 Jquery
$_SESSION["oh"]["phone"]=(empty($_SESSION["oh"]["phone"]))?$_COOKIE["phone"]:$_SESSION["oh"]["phone"];
按照某种模式屏蔽手机并对其进行验证
$pattern = "/^([1]-)?[0-9]{3}-[0-9]{3}-[0-9]{4}$/i"
参考
AFAIK,我们使用了 jquery 中的 mask() 它有助于验证它
$("#phone").mask("(999) 999-9999");
使用起来很方便