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.
我很讨厌正则表达式,但我只想做一个简单的过滤器,其中 / 替换为 1,“ 替换为 2 并且 < 替换为 3。我很欣赏一个语法简单的例子,我”我想通过用户提供的 get 变量的输入来运行这个过滤器。语法如下:
replace(/,1) replace(",2) replace(<,3)
. 谢谢。
我真的看不出这里需要正则表达式。你可以使用str_replace
例如
str_replace('/', '1', $_GET['var']);