将 eregi_replace 替换为 preg_replace
如何将此参数的函数转换
eregi_replace('<[^>]*>', '', $stringToDisplay)
为 preg_replace?
How do I convert this function with this parameters
eregi_replace('<[^>]*>', '', $stringToDisplay)
to preg_replace?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
PCRE 正则表达式 需要 分隔符,将模式与可选修饰符分开(在本例中
i
反映不区分大小写的匹配):但是由于没有需要在不区分大小写的情况下解释的字母,因此您可以省略
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):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.
尝试
更多详细信息 - http://php.net/manual/en/function.preg -replace.php
Try
More details - http://php.net/manual/en/function.preg-replace.php