Heim > Artikel > Backend-Entwicklung > 求教一个正则问题
preg_match("/^([\.-\w]+)\/([\.-\w]+)(.*)$/i", “ext/plain; charset=utf-8”)
错误
preg_match(): Compilation failed: invalid range in character class at offset 7
正则不熟 求救
echo preg_match("/^([\.-\w]+)\/([\.-\w]+)(.*)$/i", "ext/plain; charset=utf-8"); //1
为什么你的php会报错?我用你的正则显示的是匹配成功啊。。。
<?phpheader('content-type:text/html;charset=utf-8');//$res = preg_match("/^([\.-\w]+)\/([\.-\w]+);\s(\S)*$/i", 'ext/plain; charset=utf-8');$res = preg_match("/^([\.-\w]+)\/([\.-\w]+)(.*)$/i", "ext/plain; charset=utf-8");if($res){ echo "匹配!";}else{ echo "匹配失败!";}?>
估计是服务器问题。debian线上正常。本地MAC和windows都有问题。无奈只能换个方法写