如何將任意長度的句子切成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的答案。
預先感謝解決它的人。
如何將任意長度的句子切成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的答案。
預先感謝解決它的人。
請參閱array_chunk()
。
$words = str_word_count($sentence, 1);
$chunks = array_chunk($words, 5);
請發表您的代碼到目前爲止,並解釋什麼是行不通的。 – elclanrs
不是很確定的要求,但嘗試'爆炸()' – swapnesh
可能的重複:[我如何只獲得一個確定數量的字從字符串在PHP?](http://stackoverflow.com/ q/1112946/367456) - 和其他許多人。請使用搜索。 – hakre