php fckeditor 调用的函数
2015-01-24信息快讯网
showfck() 编辑器调用函数
/*
* 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>";
}
php在页面中调用fckeditor编辑器的方法
php下安装配置fckeditor编辑器的方法
discuz的php防止sql注入函数
Discuz Uchome ajaxpost小技巧
php下获取Discuz论坛登录用户名、用户组、用户ID等信息的实现代码
PHP的autoload自动加载机制使用说明
php运行出现Call to undefined function curl_init()的解决方法
晋城吧对DiscuzX进行的前端优化要点
使用VisualStudio开发php的图文设置方法
php 提速工具eAccelerator 配置参数详解
在Windows下编译适用于PHP 5.2.12及5.2.13的eAccelerator.dll(附下载)
Fatal error: Call to undefined function curl_init()解决方法
mysql 性能的检查和优化方法
学习discuz php 引入文件的方法DISCUZ_ROOT
php 分页函数multi() discuz
discuz7 phpMysql操作类
PHP加速 eAccelerator配置和使用指南
DISCUZ 论坛管理员密码忘记的解决方法
PHP mb_convert_encoding 获取字符串编码类型实现代码
php strtotime 函数UNIX时间戳
使用eAccelerator加密PHP程序
PHP集成FCK的函数代码
什么是phpDocumentor第1/2页
php-accelerator网站加速PHP缓冲的方法
FCKeditor添加自定义按钮
dedecms防止FCK乱格式化你的代码的修改方法
FCKeditor的安装(PHP)
实例(Smarty+FCKeditor新闻系统)