如何在我的 PHP 代码中用 preg_split() 替换 split() ?

发布于 2024-11-12 02:29:10 字数 94 浏览 2 评论 0原文

您能帮我将 $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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

命硬 2024-11-19 02:29:10

在大多数情况下,您只需要添加 分隔符

 preg_split('/&x=/',$url)

如果您不需要它们作为模式的一部分, / 就可以了。并且其他符号都不是元字符,因此不需要转义。

请注意,在您的情况下,您可以只使用 explode 代替,因为您不需要一个正则表达式。

In most cases you just need to add delimiters:

 preg_split('/&x=/',$url)

/ 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文