php fckeditor 调用的函数
程序员文章站
2024-01-16 12:10:52
复制代码 代码如下:/* * showfck() 编辑器调用函数 * @name 名字 (必须) * @val value默认值 * @toolbarset fck工具栏名...
复制代码 代码如下:
/*
* 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>";
}
上一篇: 明修手机暗换配件!揭露手机维修3大猫腻
下一篇: Web的了解和servlet的初次见面