如何只选择前几个单词而不是句子行?

发布于 2024-11-09 10:38:03 字数 187 浏览 0 评论 0原文

我正在使用以下代码片段:

 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最佳男配角 2024-11-16 10:38:03
$lines = split("[\n|\r]", $sentence);
implode(' ', array_slice(explode(' ', $lines[0]), 0, 10));

首先分成许多行,然后仅在第一行上执行操作。

$lines = split("[\n|\r]", $sentence);
implode(' ', array_slice(explode(' ', $lines[0]), 0, 10));

First split into many lines, then do your action on only the first line.

我不咬妳我踢妳 2024-11-16 10:38:03

确保 $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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文