Home > Backend Development > PHP Tutorial > PHP配置FCKEditor

PHP配置FCKEditor

WBOY
Release: 2016-06-23 14:34:44
Original
856 people have browsed it

    php果然简单好学,就连配置FCKEditor都如此轻松,本来是打算花一到两个小时配置完成它就不错了,没想到从下载最新版本到配置成功也就不到半小时.想起当年在java下配置FCKEditor时那个艰辛......
    下面记录下配置方法,把下载下来的zip文件解压到php网站的根目录下,默认文件夹名是"fckeditor"
    在需要加入编辑器的页面里面引用fckeditor/fckeditor.php,即

php  include ( " fckeditor/fckeditor.php " ); ?>


    在需要加入编辑器的地方加入如下代码: 

$oFCKeditor   =   new  FCKeditor( ' FCKeditor1 ' ) ; // 建立对象
$oFCKeditor -> BasePath  =   ' FCKeditor/ '  ; // FCKeditor所在的位置
$oFCKeditor -> ToolbarSet  =   ' Default '  ; // 工具按钮
$oFCKeditor -> Width  =   ' 50% ' ; // 宽
$oFCKeditor -> Height  = ' 500 ' ; // 高
$oFCKeditor -> Value  = ' Hello ' ; // 默认显示的文字
$oFCKeditor -> Create() ;

    其中FCKeditor1对应textarea中的name属性
    看看吧,不出意外的话配置成功。
    如果你感觉FCKEditor提供的功能太多,有许多功能用不到的话,可以自己建立自定义的ToolbarSet具体方法就是打开fckediotr目录下的fckconfig.js,加入如下代码:

// 在名为"Default"的toolbarset里面包含了所有fck的功能,英语好的自己看看吧
FCKConfig.ToolbarSets[ " 自定义toolbarset名称 " ] = [ [需要显示的功能]]


                    就这么多吧,应该没什么问题了
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template