gpt4 book ai didi

php - 如何将换行符/换行符内爆到空格?

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:29:16 25 4
gpt4 key购买 nike

如何将换行符/换行符内爆到空格?

给定这些 $strings:

The quick brown
fox jumps
over the lazy
dog

用空格内爆这些字符串

$keys = implode(' ', array_keys($strings));

我有这个:

The quick brownfox jumpsover the lazydog

我正在努力做到这一点:

The quick brown fox jumps over the lazy dog

有灯吗?谢谢。

最佳答案

你可以使用爆炸:

$strings = <<<TEXT
The quick brown
fox jumps
over the lazy
dog
TEXT;

$strings = implode(' ', explode("\n", $strings));

echo $strings;

如果您需要更多解释,请告诉我:)

关于php - 如何将换行符/换行符内爆到空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28784731/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com