php模糊匹配数字电话格式

正文开始

国外的有区号 +123 2131311 的格式 再普通的情况就是无区号的数字 1231321 ~~~ if($phone) { $pattern = "/^(\+(\d+)|(\d+))?\s?[0-9-]+$/"; preg_match($pattern, $phone, $matches); // var_dump($matches); //输出匹配结果 if(empty($matches)){ return $this->error('The phone format is incorrect!'); } } ~~~

正文结束

PHP接口(interface)和抽象类(abstract) thinkphp6/tp6多语言配置的注意事项-踩坑