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.
我不知道如何转换ereg为preg; 有人可以帮我解决这条线吗?
ereg
preg
if (ereg("[/[/]",$keyword)) { ... }
这应该有效:
if (preg_match('/[/[/]/', $keyword)) { ... }