当我将带有换行符的文本插入到sqlite2 db 时,所有换行符都以
.
我可以用
$content = html_entity_decode($row['Content']);
但是我怎样才能将它们转换为<br/>
?
到目前为止我已经尝试过
$content = str_replace(" ",'<br/>',$row['Content']);
$content = preg_replace("/\&\#10\;/", "<br/>", $row['Content']);
$content = str_replace("\x0a", "<br/>", $row['Content']);
$content = str_replace(' ','<br/>',$row['Content']);
$content = str_replace(" ","<br/>",$row['Content']);
没有运气。
仍然存在,就像没有这些线一样。
接下来是什么?