2012-04-03 7 views
0

私はphpには新しく、誰かが一連の文を分割するのを手伝ってくれるのだろうかと思っていました。php配列スプライス

配列を2つの部分に分割し、最初の部分を10個の部分に分割して、結果をエコーし​​ます。

私はそれは次のようになります100本の文章があった場合:10に十分な文章その後、パート1、Xが存在しない場合

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 

は空白にする必要があります。

おかげ

+0

あなたは私たちに文章のあなたの配列を示すことができますか?異なる言語と異なる文章様式は、文章に分割するさまざまな方法を意味します:) – F21

答えて

0
$outerParts = array_chunk($sentences, 50); 
$innerParts1 = array_chunk($outerParts[0], 5); 
関連する問題