特定のインデックスの後に爆発機能を停止するにはどうすればよいですか。例えば
<?php
$test="The novel Prognosis Negative by Art Vandelay expresses protest against many different things. The story covers a great deal of time and takes the reader through many different places and events, as the author uses several different techniques to really make the reader think. By using a certain type of narrative structure, Vandelay is able to grab the reader’s attention and make the piece much more effective and meaningful, showing how everything happened";
$result=explode(" ",$test);
print_r($result);
?>
最初の 10 個の要素 ($result[10]) のみを使用したい場合はどうすればよいですか?
1 つの方法は、文字列を最初の 10 個のスペース (" ") までトリミングすることです。
他に方法はありますか? limit の後に残りの要素をどこにも保存したくありません (正の limit パラメータを使用して行われたように)。