这个正则表达式正确吗(eregi 到 preg_match 转换)
我正在替换我的网站中已弃用的 PHP 函数。我有这个代码:
(eregi("<[^>]*object.*\"?[^>]*>", $secvalue))
它写在 php.net 网站上,它 eregi
应该是替换为带有 i
修饰符的 preg_match。
这个编码对吗?
(preg_match("<[^>]*object.*\"?[^>]*/i>", $secvalue))
或者我应该将 /i
放在其他地方?
I am replacing PHP deprecated functions in my website. I have this code:
(eregi("<[^>]*object.*\"?[^>]*>", $secvalue))
It is written on the php.net site that it eregi
should be replaced with preg_match with i
modifier.
Is this coded right?
(preg_match("<[^>]*object.*\"?[^>]*/i>", $secvalue))
or should I place /i
somewhere else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在开头添加一个正斜杠以匹配结束斜杠:
You need to add a forward slash at the beginning to match the closing one: