PHP无限爆发

发布于 2024-10-21 12:14:06 字数 98 浏览 3 评论 0原文

下面的爆炸函数的正极限参数为 2。这个参数有什么作用,如何删除它?

$array = explode(' ', $str, 2);

The explode function below has a positive limit parameter of 2. What does this parameter do, and how can I remove it?

$array = explode(' ', $str, 2);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

悲欢浪云 2024-10-28 12:14:06

在您的情况下,数组将具有三个元素,具体取决于 $str 的值,前两个元素将是由空格分隔的字符串。字符串的剩余部分将是第三个元素。

如果 $str 很长,并且您需要的只是数组的前两个元素,则没有必要删除 2 ,如果您愿意,可以删除后面的 $array2 =explode(' ',$array[2]);< /代码>

In your case the array will have three elements , depending upon the value of $str , first two elements would be strings separated by space . The remaining part of the string will be the thrid element.

If $str is very long and all you need is first two elements of array then there is no point of removing 2 , latter if you like can do $array2 = explode(' ',$array[2]);

白馒头 2024-10-28 12:14:06

最后一个参数是可选的。

$array = explode(' ', $str);

尝试用空格 (' ') 分割 $str。物品没有限制。

The last parameter is optional.

$array = explode(' ', $str);

Try this for splitting the $str with space (' '). No limit on items.

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