Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
みんな、可能性があるかどうか尋ねたいだけです。たとえば$currenttext = "someexamplepls"; 、それを表示または印刷したい場合print "$currenttext";は、準備された出力が次のようになりますsomeexamplepls。私の質問は、次のように印刷したいかどうかです。
$currenttext = "someexamplepls";
print "$currenttext";
someexamplepls
somee xampl epls
5 文字ごとに自動改行があります。どうすればよいですか?
使用wordwrap():
wordwrap()
echo wordwrap($str, 5, "\n", true);
<br>の代わりにHTML 改行を使用する場合\n。
<br>
\n