将 ereg_replace 更改为 preg_replace

发布于 2024-11-05 03:11:55 字数 257 浏览 1 评论 0原文

我该如何更改

$output = ereg_replace("<script.*</script>", "", $output);

为preg?

 I tried $output = preg_replace("/<script.*</script>/", "", $output);

谢谢

编辑:抱歉,格式混乱

How would I change

$output = ereg_replace("<script.*</script>", "", $output);

to preg?

 I tried $output = preg_replace("/<script.*</script>/", "", $output);

Thanks

EDIT: Sorry, messed up formatting

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

ま昔日黯然 2024-11-12 03:11:55

如果您使用 / 作为分隔符,则必须转义模式中每次出现的 /,或者其被识别为分隔符本身,并且后面的所有内容都会被转义。用作修饰符(这可能会失败)。

"/<script.*<\/script>/"

或者您可以让自己的生活变得轻松,只需选择不同的分隔符即可。我更喜欢 ~,因为它出现的模式相当罕见

"~<script.*</script>~"

更新:请参阅描述的注释,这里发生了什么

"~<script.*</script>~siU"

If you use / as the delimiter, you must escape every occurence of / within the pattern, or its recocnized as delimiter itself and everthing following will be used as modifiers (which will probably fail).

"/<script.*<\/script>/"

or you make your life easy and just choose a different delimiter. I prefer ~, because it occurs in patterns quite infrequent

"~<script.*</script>~"

Update: See comments for the description, what happens here

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