我們在這裡將會為大家介紹一種功能強大的函數,專門用來進行可視化編輯器的調用。這一函數就是
PHP editor函數語法
editor($textareaid = 'content', $toolbar = 'phpcms', $width = 500, $height = 400)
$textareaid 為文本框 id
$toolbar 為工具按鈕樣式,目前有 phpcms 和 introduce 兩種可以選擇,一般較大的內容編輯框用 phpcms,而簡要介紹則用 introduce
$width 指定編輯器的寬度
$height 指定編輯器的高度
例如:在文章模塊發布文章時的內容編輯采用可視化編輯器的PHP editor函數代碼如下
- < textarea
- name="article[content]"
- id="content" cols="60"
rows="4">- < /textarea>
- < ?=editor("content",
"phpcms",550,400)- ?>
以上就是PHP editor函數的相關使用方法介紹。