如何在Fckeditor中禁用自动添加<p></p>
标记。
当我尝试从fckeditor获取任何帖子数据时,它给了我包装的数据
我如何删除/禁用那些<p></p>
在此先感谢您的任何建议和回复
最佳答案
为时已晚,但是可以帮助其他人通过搜索引擎到达此页面,就像我发现的那样。
<?php
include_once('fckeditor/fckeditor.php');
$oFCKeditor = new FCKeditor('description');
$oFCKeditor->BasePath = '/fckeditor/';
$oFCKeditor->Value = 'some text';
$oFCKeditor->Config['EnterMode'] = 'br'; // turn off auto <p> tags wrapping content
$oFCKeditor->Create();
?>
请参阅http://www.tequilafish.com/2008/09/12/fckeditor-remove-p-tags-from-wrapping-your-content/
关于fckeditor - 禁用在fckeditor中添加<p> </p>标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3339319/