如何隐藏ckeditor上显示的HTML元素

时间:2018-10-09 14:48:21

标签: php codeigniter ckeditor

晕我有PHP项目使用CI(CodeIgniter)框架。我必须将CKeditor用于我的文本区域。我使用最新的CKEDITOR ckeditor5-build-classic-11.0.1。一切都很好,直到我想编辑一些文章。

enter image description here

插入表中的数据是这个

<p><em><strong>test test test</strong></em></p>

当将其显示在ckeditor中时如何删除tha元素?

这是我要显示的CI代码

<?php
$options = array(
    'class' => 'ckeditor',
    'id' => 'content',
    'name' => 'content',
    'value' => isset($data['content']) ? set_value('content', $data['content']) : set_value('content'),
    'rows'  => '10',
    'required' => 'required',
);
echo form_textarea($options);
echo form_error('content');
?>

请咨询

1 个答案:

答案 0 :(得分:0)

尝试使用以下代码对数据进行解码,并在编辑器主体中使用该输出。

$data["content"] = html_entity_decode($data["content"]);