PHP 正则表达式 preg_replace
我有一些带有 css 样式的文本(从数据库中获取,所以当我使用 echo 时,css 会显示),并且我想使用 preg_replace 来替换该 css(例如用空格)。我尝试做类似的事情:
$some = "<style[\d\D]*>[\d\D]*?</style>" ;
$text = $result['text'];
$a = preg_replace($some, " " ,$text);
...但它不起作用:警告:preg_replace()[function.preg-replace]:未知修饰符'['
知道如何解决这个问题吗?
感谢您的帮助,如果您需要更多信息,请告诉我。
I have some text with css style (taken from database, so when I use echo, css show up) and I want to use preg_replace to replace that css (for example with space). I tried to do something like that:
$some = "<style[\d\D]*>[\d\D]*?</style>" ;
$text = $result['text'];
$a = preg_replace($some, " " ,$text);
...but its not working: Warning: preg_replace() [function.preg-replace]: Unknown modifier '['
Any idea how to fix that?
Thx for help and let me know if u need more info.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将正则表达式放在分隔符中。经常使用斜杠:
在您的情况下:
Put your regex in delimeters. A slash is often used:
In your case: