将 eregi_replace 替换为 preg_replace

发布于 2024-10-06 07:31:40 字数 124 浏览 4 评论 0原文

如何将此参数的函数转换

eregi_replace('<[^>]*>', '', $stringToDisplay)

为 preg_replace?

How do I convert this function with this parameters

eregi_replace('<[^>]*>', '', $stringToDisplay)

to preg_replace?

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

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

发布评论

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

评论(2

倾城月光淡如水﹏ 2024-10-13 07:31:40

PCRE 正则表达式 需要 分隔符,将模式与可选修饰符分开(在本例中 i 反映不区分大小写的匹配):

preg_replace('/<[^>]*>/i', '', $stringToDisplay)

但是由于没有需要在不区分大小写的情况下解释的字母,因此您可以省略 i 修饰符。

如果您碰巧尝试使用正则表达式解析 HTML 或类似的标记语言,请考虑使用适当的解析器。

The PCRE regular expressions require delimiters that separate the pattern from optional modifiers (in this case i to reflect a case insensitive match):

preg_replace('/<[^>]*>/i', '', $stringToDisplay)

But since there are not letters that need to be interpreted without case, you can omit the i modifier.

And if you happen to try parsing HTML or a similar markup language with regular expressions, consider using a proper parser.

番薯 2024-10-13 07:31:40

尝试

preg_replace('/\<[^>]*\>/i', '', $stringToDisplay)

更多详细信息 - http://php.net/manual/en/function.preg -replace.php

Try

preg_replace('/\<[^>]*\>/i', '', $stringToDisplay)

More details - http://php.net/manual/en/function.preg-replace.php

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