标签: php database html-entities
简单示例
$text = 'First line second line';
我希望文本有一个新行,但在数据库中,不要存储/n
/n
我尝试
htmlentities(),htmlspecialchars()我也尝试了这个
htmlentities()
htmlspecialchars()
$text = str_replace("\n", "<br/>",$text);