ну вы могли бы взломать это сами (если я правильно понимаю, что вам нужно)
$text = "hello, I am text
and this is another paragraph, please do some cool
stuff with this (this is after a line break)
last apragrahp...";
$text = str_replace("\r\n","\n",$text);
$paragraphs = preg_split("/[\n]{2,}/",$text);
foreach ($paragraphs as $key => $p) {
$paragraphs[$key] = "<p>".str_replace("\n","<br />",$paragraphs[$key])."</p>";
}
$text = implode("", $paragraphs);
echo $text;
Это на самом деле выведет это:
<p>hello, I am text</p><p>and this is another paragraph, please do some cool<br />stuff with this (this is after a line break)</p><p>last apragrahp...</p>
Обратите внимание, что теперь пропущены все новые строки и т. Д. ...