検索すると、文字列内のすべての改行の前に挿入を行うPHP関数が見つかりました。
nl2br();
例:
<?php
echo nl2br("This is an example\r\n where line breaks\r\n added", false);
?>
上記のコード出力:
This is an example<br\>
where line breaks<br\>
added
<br/>の代わりに出力したかったものすべての改行の前後にタグで文字列をラップします
上記のコードからの出力例は、スパンで文字列をラップします
<span>This is an example</span>
<span>where line breaks</span>
<span>added</span>
これにPHP関数はありますか?またはカスタムPHP関数