\-存在价值是什么
$subject = "my email is spark@imooc.com";
$pattern = '/[\w\-]+@\w+\.\w+/';
preg_match($pattern, $subject, $matches);
echo $matches[0];
其中[\w\-]中的\-存在有什么意义
小白求问
$subject = "my email is spark@imooc.com";
$pattern = '/[\w\-]+@\w+\.\w+/';
preg_match($pattern, $subject, $matches);
echo $matches[0];
其中[\w\-]中的\-存在有什么意义
小白求问
2017-09-24
举报