人人人妻人人人妻人人人,99精品国产综合久久久久五月天 ,欧美白人最猛性XXXXX,日韩AV无码免费播放

News新聞

業(yè)界新聞動(dòng)態(tài)、技術(shù)前沿
Who are we?

您的位置:首頁(yè)      樂(lè)道系統(tǒng)FAQ      Yii框架引用插件和ckeditor中body與P標(biāo)簽去除的方法

Yii框架引用插件和ckeditor中body與P標(biāo)簽去除的方法

標(biāo)簽: 發(fā)布日期:2017-01-19 00:00:00 266

本文實(shí)例講述了Yii框架引用插件和ckeditor中body與P標(biāo)簽去除的方法。分享給大家供大家參考,具體如下:

在Yii中引用插件

注:插件和擴(kuò)展不一樣

1,源碼放在project/ckeditor/*
2,在代碼create,update中引用

Php代碼

<?php
include_once "/ckeditor/ckeditor.php";
// Create a class instance.
$CKEditor = new CKEditor();
// Path to the CKEditor directory.
$CKEditor->basePath = Yii::app()->baseUrl.'/ckeditor/';
// Replace a textarea element with an id (or name) of "textarea_id".
$CKEditor->replace("News_content");
?>