Php阵列拼接

时间:2012-04-03 08:53:22

标签: php

我是php新手,想知道是否有人可以帮我分割一系列句子。

我想将数组分成两部分,然后再将第一部分分成10部分,然后回显结果。

如果我有100个句子,它会是这样的:

echo $Part1-1;  // 5 Sentences
echo $Part1-2;  // 5 Sentences
echo $Part1-3;  // 5 Sentences
echo $Part1-4;  // 5 Sentences
echo $Part1-5;  // 5 Sentences
echo $Part1-6;  // 5 Sentences
echo $Part1-7;  // 5 Sentences
echo $Part1-8;  // 5 Sentences
echo $Part1-9;  // 5 Sentences
echo $Part1-10; // 5 Sentences

echo $Part2; // 50 Sentences

如果没有足够的句子,那么Part1,X到10应该是空白的。

由于

1 个答案:

答案 0 :(得分:0)

$outerParts = array_chunk($sentences, 50);
$innerParts1 = array_chunk($outerParts[0], 5);