标签: html textarea
假设我在textarea框中键入5000个单词,该单词存储在数据库中,然后将其调用到页面上。我该怎么做才能在某一点停下来,然后从下一行开始旅行?
答案 0 :(得分:0)
您可以使用word_wrap
word_wrap
$formated_string = wordwrap($str,1000,"<br>",true);
http://www.php.net/manual/en/function.wordwrap.php