PHP 正则表达式 preg_replace

发布于 2024-11-30 16:43:04 字数 368 浏览 0 评论 0原文

我有一些带有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

街角卖回忆 2024-12-07 16:43:04

将正则表达式放在分隔符中。经常使用斜杠:

/regex/flags

在您的情况下:

"/<style[\d\D]*>[\d\D]*?<\/style>/"

Put your regex in delimeters. A slash is often used:

/regex/flags

In your case:

"/<style[\d\D]*>[\d\D]*?<\/style>/"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文