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 10 年后,我仍然在 regex 中使用 S***,你能帮我转换一下吗
$x_ary=split('&x=',$url);
到 preg_split 等价物?
谢谢
在大多数情况下,您只需要添加分隔符:
preg_split('/&x=/',$url)
/如果您不需要它们作为模式的一部分,那很好。并且其他符号都不是元字符,因此不需要转义。
/
请注意,在您的情况下,您可以explode改用,因为您不需要正则表达式。
explode