PHP中使用FCKeditor2.3.2配置
发布:smiling 来源: PHP粉丝网 添加日期:2013-11-13 21:23:29 浏览: 评论:0
FCKeditor2.3.2在线编辑器非常好用,完全支持文件上传。今天baidu了一下午终于搞定了。 下载FCKeditor2.3.2,解压至FCKeditor。
1首先删除不必要的文件节省空间。凡是以_开头的文件如_samples,_testcases和一些用不到的.asp、.jsp、.cfm文件统统干掉。
2修改fckconfig.js
FCKConfig.AutoDetectLanguage = true ;//是否自动检测语言
FCKConfig.DefaultLanguage = 'zh-cn' ;//设置语言
FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/default/' ;//设置皮肤
FCKConfig.TabSpaces = 1 ;//tab是否有效
FCKConfig.ToolbarStartExpanded = true ;//编辑工具条是否出现,等点“展开工具栏”时才出现
FCKConfig.FontNames = '宋体;黑体;隶书;楷体_GB2312;Arial;Comic Sans MS;Courier New;Tahoma;Times New Roman;Verdana' ;//添加中文字体
修改FCKeditoreditorCSSfck_editorarea.css
设置默认字体及大小
body, td
{
font-family: Arial, Verdana, Sans-Serif;
font-size: 14px;
}
3关于文件上传的设置
修改fckconfig.js
var _FileBrowserLanguage = 'php' ; // asp | aspx | cfm | lasso | perl | php
var _QuickUploadLanguage = 'php' ; // asp | aspx | cfm | lasso | php
修改fckeditoreditorfilemanagerbrowserdefaultconnectorsphp
$Config['Enabled'] = true ;
$Config['UserFilesPath'] = '/UserFiles/' ;//设置上传的文件夹,可自己指定
修改fckeditoreditorfilemanageruploadphp
$Config['Enabled'] = true ;
$Config['UseFileType'] = true ;
$Config['UserFilesPath'] = '/UserFiles/' ;//同上要一样
4引入在线编辑器时只需
<?php
include("fckeditor/fckeditor.php") ;
$oFCKeditor = new FCKeditor('FCKeditor1') ;//实例化
$oFCKeditor->BasePath = 'fckeditor/';//这个路径一定要和上面那个引入路径一致,否则会报错:找不到fckeditor.html页面
//$oFCKeditor->Value = '' ;
$oFCKeditor->Width = '100%' ;
$oFCKeditor->Height = '300' ;
$oFCKeditor->Create() ;
?>
JS用alert( FCKeditorAPI.GetInstance('FCKeditor1').GetXHTML( true ))得到FCKeditor1的值;
PHP用$_POST['FCKeditor1']得到FCKeditor1的值。
Tags: FCKeditor2 3 2 php配置编辑器
- 上一篇:php生成随机密码的几种方法
- 下一篇:如何使用PHP开发高效的WEB系统
相关文章
- ·php utf-8转换gb2312 字符串被截断解决方法(2013-11-29)
- ·PHP utf-8和gb2312编码转换乱码的问题(2013-12-02)
- ·phpMyAdmin 3.5.8 在 Safari 中空白屏解决方法(2013-12-04)
- ·Fatal error: Allowed memory size of 33554432 bytes exhausted(2013-12-07)
- ·PHP代码实现301跳转页面实例(2014-01-11)
- ·php header中301/404跳转要注意事项详解(2014-01-11)
- ·PHP实现301永久重定向方法(2014-03-18)
- ·php实现301永久重定向和302临时重定向方法(2014-06-30)
- ·php把所有页面都指一个域名301永久转向代码(2014-08-17)
- ·PHP获取301重定向页面跳转后真实URL地址(2014-09-12)
- ·header() 301重定向实现代码(2014-09-18)
- ·php中json_encode gbk/gb2312中文乱码问题(2014-09-20)
- ·php5.3.9中post数据不完整问题解决(2014-09-21)
- ·php把u5c0fu533au7eff乱码转换成中文(2014-09-21)
- ·php域名301转向程序代码(2014-09-22)
- ·PHP实现301跳转,及延时跳转代码(2015-04-13)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)