当前位置:  开发笔记 > 编程语言 > 正文

如何将大数组切成小数组

如何解决《如何将大数组切成小数组》经验,为你挑选了1个好方法。

如何将任意长度的句子切成5个单词的数组?

换一种说法:

$Dummy = "Here is  a long sentence, but what I need to make out of this sentence 
          is that it should be chunked off to smaller arrays with 5 words each."

我想用PHP的答案.

在此先感谢解决它的人.



1> nice ass..:

array_chunk().

$words = str_word_count($sentence, 1);
$chunks = array_chunk($words, 5);

推荐阅读
牛尾巴2010
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有