fckeditor 配置 php fckeditor 调用的函数
程序员文章站
2022-06-14 15:08:55
...
复制代码 代码如下:
}
/*
* showfck() 编辑器调用函数
* @name 名字 (必须)
* @val value默认值
* @toolbarset fck工具栏名字
* @width 宽度
* @height 高度
*/
function showfck($name, $val= '', $toolbarset = '', $width = '100%', $height = '200'){
$classname = 'fckname';
echo "
";
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 "
"; 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 "
}
以上就介绍了fckeditor 配置 php fckeditor 调用的函数,包括了fckeditor 配置方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
上一篇: 执行mysqldump的权限有关问题
下一篇: Oracle中dual表的用途介绍
推荐阅读
-
PHP最常用的ini函数分析 针对PHP.ini配置文件_PHP
-
关于PHP函数声明与调用的一个小疑点
-
ThinkPHP中公共函数路径和配置项路径的映射分析_PHP
-
ThinkPHP中公共函数路径和配置项路径的映射分析,thinkphp函数_PHP教程
-
Smarty中调用FCKeditor的方法,smartyfckeditor
-
使用ltrace工具跟踪PHP库函数调用的方法
-
调用WordPress函数统计文章访问量及PHP原生计数器的实现
-
探讨Smarty中如何获取数组的长度以及smarty调用php函数的详解
-
jQuery+PHP发布的内容进行无刷新分页(Fckeditor)
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法