如何在我的 PHP 代码中用 preg_split() 替换 split() ?
您能帮我将 $x_ary = split('&x=', $url);
转换为 preg_split()
等效项吗?
Could you please help me with converting $x_ary = split('&x=', $url);
to the preg_split()
equivalent?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在大多数情况下,您只需要添加 分隔符:
如果您不需要它们作为模式的一部分, /
就可以了。并且其他符号都不是元字符,因此不需要转义。请注意,在您的情况下,您可以只使用
explode
代替,因为您不需要一个正则表达式。In most cases you just need to add delimiters:
/
are fine if you do not need them as part of the pattern. And none of the other symbols are meta characters, so don't need escaping.Take note that in your case you could just use
explode
instead, since you don't need a regex.