PHP preg_replace 错误:未知修饰符']'
为另一个 preg_replace 问题道歉!
我收到错误:
Warning: preg_replace() [function.preg-replace]: Unknown modifier ']' in C:\xampp\htdocs\reg.php on line 6
运行以下 preg_replace 时:
$newContent = preg_replace('<img [^>]*.gif[^>]*?>','MATCHED',$newContent);
我已经通过几个在线正则表达式生成器运行了正则表达式,它看起来很合理。我在这里缺少什么想法吗?我是否错误地使用了 ]
?
Apologies for yet another preg_replace question!
I'm getting the error:
Warning: preg_replace() [function.preg-replace]: Unknown modifier ']' in C:\xampp\htdocs\reg.php on line 6
When running the following preg_replace:
$newContent = preg_replace('<img [^>]*.gif[^>]*?>','MATCHED',$newContent);
I've run the regex through a couple of online regex builders and it seems sound. Any ideas what I'm missing here? Am I using ]
incorrectly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的表达式周围需要一个分隔符:
You need a delimiter around your expression: