php去除富文字編輯器中的內容格式

2021-09-30 16:42:27 字數 748 閱讀 4476

在新的專案中遇到需要在文章列表頁顯示文章內容的開頭幾行純文字部分,因為後台是通過富文字編輯器新增的文章,直接返回的資料是帶有格式的資料,造成列表頁樣式混亂,所以需要去除格式返回純文字資料。

/**

* 去除html所有標籤、空格以及空白,並擷取字串(包括中文)

* @param string $string 字串

* @param number $sublength 字串長度

* @param string $encoding 編碼方式

* @param string $ellipsis 省略號

*/function

cutstr_html

($string

,$sublength

,$encoding

='utf-8'

,$ellipsis

='…'

)else

}//測試字串

$str

='fherfhewkolfjlkdsjfld';

//呼叫方法測試

echo

cutstr_html

($string

=$str

,$sublength=5

,$encoding

='utf-8'

,$ellipsis

='...'

);

這樣輸出的就是長度為5的純文字字串,就可以放在文章列表中顯示了。

富文字編輯器(php)

然後解壓出來 改名為ueditor 並放到專案檔案中。前端 1 引入ueditor的相關檔案 2 在body標籤中放進該標籤 name屬性是為了php檔案獲取值,用 post detail 就可以了 3 配置一下該編輯器的屬性,在script標籤中 首先要獲取id,自己設定 的id,在這裡我自己弄了...

富文字編輯器

關於使用富文字編輯器的一些小坑 官網 1.專案 片 editor fail function xhr,editor,result custominsert function insertimg,result,editor this.editor.create this.editor.txt.html...

富文字編輯器

富文字編輯器,rich text editor,簡稱 rte,它提供類似於 microsoft word 的編輯功能。常用的富文字編輯器 kindeditor ueditor ckeditor 在頁面中新增js 用於初始化kindeditorallowfilemanager 是否允許瀏覽伺服器已上傳...