PHP:每5个单词后将数组中的单词添加到字符串中

我有一个字符串,我想每 5 个单词后放一个单词。这个词来自数组。

French History Maths Physics Spanish Chemistry Biology English DT Maths History DT Spanish English French RS

我想从数组中获取 2 个单词,然后在 5 个单词之后将其插入到上面的字符串中。

$words = arrray(a, able, about, above, abst, accordance, according, accordingly, across, act, actually, added, adj);

像这样的输出:

French History Maths Physics Spanish a able about above abst Chemistry Biology English DT Maths according according accordingly across act Spanish English French RS.



月关宝盒
浏览 110回答 1
1回答

慕桂英546537

$string = 'French History Maths Physics Spanish Chemistry Biology English DT Maths History DT Spanish English French RS';$words&nbsp; = array('a', 'able', 'about', 'above', 'abst', 'accordance', 'according', 'accordingly', 'across', 'act', 'actually', 'added', 'adj');$result = [];$xpld = explode(' ',$string);if(!empty($xpld)){&nbsp; $count = 0;&nbsp; for ($i=0; $i < sizeof($xpld) ; $i++)&nbsp;&nbsp; {&nbsp; &nbsp; if ($i % 5 == 0 && $i > 0)&nbsp;&nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; for ($j=$count; $j < $count + 5 ; $j++)&nbsp;&nbsp; &nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; $result[] = @$words[$j];&nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; $count = $j;&nbsp; &nbsp; }&nbsp; &nbsp; $result[] = $xpld[$i];&nbsp; }}$result = implode(' ',$result);echo $result;上面的代码与您的示例中的代码类似,但我不知道它是否有效,请注意,我曾经suppress @避免数组单词超出索引
打开App,查看更多内容
随时随地看视频慕课网APP