回显文本每行分隔 3 个单词?

发布于 2024-10-28 23:20:33 字数 510 浏览 4 评论 0原文

我见过一些使用 var_dump 的示例,但如果可能的话,我宁愿使用简单的 echo。

使用 echo 应该看起来像这样:

This is a
simple text
I just wrote

使用 var_dump:

function split3($text)
{
    $array = array();
    foreach(explode(' ',$text) as $i=>$word)
    {
        if($i%3) {
            $array[floor($i/3)] .= ' '.$word;
        } else {
            $array[$i/3] = $word;
        }
    }
    return $array;
}

$text = "This is a simple text I just wrote";
var_dump(split3($text));

I have seen some samples using var_dump, but I I would rather use a simple echo, if it's possible.

It should look like this using echo:

This is a
simple text
I just wrote

Using var_dump:

function split3($text)
{
    $array = array();
    foreach(explode(' ',$text) as $i=>$word)
    {
        if($i%3) {
            $array[floor($i/3)] .= ' '.$word;
        } else {
            $array[$i/3] = $word;
        }
    }
    return $array;
}

$text = "This is a simple text I just wrote";
var_dump(split3($text));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

海之角 2024-11-04 23:20:33

与您的问题相比,您的示例输出有点错误。

如果输出是这样的。

This is a
simple text I
just wrote

然后替换 var_dump(split3($text));与这个

$splitedText = split3($text);
foreach($splitedText as $value){ //Just print the array content
    echo $value . "<br />";  //I use <br /> as a new line   
}

Your sample output is a bit wrong compare to your question.

If the output is like this.

This is a
simple text I
just wrote

Then replace the var_dump(split3($text)); with this

$splitedText = split3($text);
foreach($splitedText as $value){ //Just print the array content
    echo $value . "<br />";  //I use <br /> as a new line   
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文