Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将此 php 代码更改为 preg_match 请
if(eregi("someurl",$data))
if (preg_match('~someurl~i', $data)). 分隔符可以是任何单个字符——我在 PHP 站点的示例中使用~而不是/使用,因为如果你将 URL 放在那里,你必须转义/. i在第二个分隔符之后是一个触发不区分大小写的标志 - PCRE 没有单独的功能。
if (preg_match('~someurl~i', $data))
~
/
i