PHP无限爆发
下面的爆炸函数的正极限参数为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的情况下,数组将具有三个元素,具体取决于 $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]);
最后一个参数是可选的。
尝试用空格 (' ') 分割 $str。物品没有限制。
The last parameter is optional.
Try this for splitting the $str with space (' '). No limit on items.