程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP入門知識 >> PHP教程:php調用fckeditor函數

PHP教程:php調用fckeditor函數

編輯:PHP入門知識

PHP代碼

/*
* showfck() 編輯器調用函數
* @name 名字 (必須)
* @val value默認值
* @toolbarset fck工具欄名字
* @width 寬度
* @height 高度
*/

function showfck($name, $val= '', $toolbarset = '', $width = '100%', $height = '200'){ 

$classname = 'fckname'; 

echo "<div class=\"$classname\">"; 

require_once WEB_ROOT . './include/fckeditor/fckeditor.php'; 

$fck = new FCKeditor($name); 

$fck->BasePath = './include/fckeditor/'; 

$fck->Config['CustomConfigurationsPath'] = $fck->BasePath . 'custom_config.js'; 

$fck->ToolbarSet = $toolbarset; 

$fck->Value = $val; 

$fck->Width = $width; 

$fck->Height = $height; 

$fck->Create(''); 

echo "</div>";
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved