gpt4 book ai didi

php - 如何在 PHP 中修剪 heredoc(长字符串)中的每一行

转载 作者:可可西里 更新时间:2023-10-31 22:17:33 25 4
gpt4 key购买 nike

我想创建一个 PHP 函数,它可以修剪长字符串中的每一行。

例如,

<?php
$txt = <<< HD
This is text.
This is text.
This is text.
HD;

echo trimHereDoc($txt);

输出:

This is text.
This is text.
This is text.

是的,我知道 trim() 函数,但我只是不确定如何在像 heredoc 这样的长字符串上使用它。

最佳答案

function trimHereDoc($t)
{
return implode("\n", array_map('trim', explode("\n", $t)));
}

关于php - 如何在 PHP 中修剪 heredoc(长字符串)中的每一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1655159/

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