如何只选择前几个单词而不是句子行?
我正在使用以下代码片段:
implode(' ', array_slice(explode(' ', $sentence), 0, 10));
问题是,如果有两行或三行,它会重复该函数并每行显示 10 个单词等。
我该怎么做才能让它只选择第一句中的前 10 个单词而不重复。
I am using the following snippet:
implode(' ', array_slice(explode(' ', $sentence), 0, 10));
The problem is that if there are two or 3 lines than it repeats the function and shows 10 words or etc per line.
How can i do it so it only selects the first 10 words from the first sentence and not repeat itself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先分成许多行,然后仅在第一行上执行操作。
First split into many lines, then do your action on only the first line.
确保
$sentence
在到达这行代码之前仅包含您输入的内容的第一行。Make sure that
$sentence
only contains the first line of whatever you're feeding it, before it ever gets to this line of code.