由于某些原因,我正在使用以下行从ckeditor结果文本区域中删除文本格式。
html_entity_decode(strip_tags($result_string_from_ckeditor),ENT_QUOTES,'utf8');
除了剥离新行以外,所有单独的行都将相互连接。
我在this post尝试使用解决方案并在下面使用,但没有成功
html_entity_decode(strip_tags(nl2br($result_string_from_ckeditor),'<br>'),ENT_QUOTES,'utf8');
修改:例如
ckeditor源文:
<p>This is an example</p>
<p>of problem in strip_tags</p>
使用命令后的源结果:
<p>This is an exampleof problem in strip_tags</p>
非常感谢。