从数组的每个字开始对新数组中的数组进行分块
如何从原始数组的每个单词开始将数组分块到新数组中? 因此每个数组的第一个字应该是前一个数组的第二个字。
例如,
$list(1=>we, 2=>have, 3=>a, 4=>good, 5=>day);
使用 array_chunk 将给出新数组 (we, have)、(a, good)、(day, and) 等等。 但我想要
$newList(0=>(we, have), 1=>(have, a), 2=>(a, good), 3=>(good, day));
How can I chunk an array in new arrays starting with each word of the original array?
So the first word of each array should be the second word of the previous array.
for example
$list(1=>we, 2=>have, 3=>a, 4=>good, 5=>day);
Using array_chunk would give as new arrays (we, have), (a, good), (day, and) and so on..
But I want
$newList(0=>(we, have), 1=>(have, a), 2=>(a, good), 3=>(good, day));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
另一种方式:
Another way: