我无法弄清楚以下内容:我有返回的字符串,我想将前几个单词放入某个 html 标记中,然后将最后两个单词分开,如下所示:<p>This is a <span class="someclass">returned string</span></p>我知道我可以将字符串分解为数组并使每个单词都是迭代,但是我只能弄清楚如何将前两个单词放入不同的 html 标签中,而我想要最后两个单词。每个字符串可以有不同数量的单词。我正在考虑对数组计数做一些事情,例如:$string = this is a returned string;$words = explode(" ", $string);$count = count($words); // $words in this case is 5$amountofwordsbeforespan = $count - 2;echo '<p>'.$amountofwordsbeforespan.'<span class="somethingtostyleit">'.SOMETHING THAT PUTS THE LAST TWO HERE.'</span></p>';但我认为应该有一个更简单的方法。有人知道实现此目的最干净的方法是什么吗?
1 回答
慕神8447489
TA贡献1780条经验 获得超1个赞
另一种方式使用array_splice(),
<?php
$string = 'this is a returned string';
$words = explode(" ", $string );
$last_two_word = implode(' ',array_splice($words, -2 ));
$except_last_two = implode(' ', $words);
$expected = '<p>'.$except_last_two.' <span class="someclass">'.$last_two_word.'</span></p>';
echo $expected;
?>
演示: https: //3v4l.org/d3DYq
- 1 回答
- 0 关注
- 73 浏览
添加回答
举报
0/150
提交
取消