FCKeditor网页编辑器是目前最好的可见性之一c;它采用JavaScript编写。具有功能强大、配置方便、跨浏览器、支持多种编程语言、开源等特点。非常流行,相关技术文档在互联网上很容易找到c;国内许多WEB项目和大型网站均采用FCKeditor(比如百度,阿里巴巴)。本文将通过和PHP相结合c;从基本安装到高级配置的逐步介绍PHPer。
FCKeditor官方网站:http://www.fckeditor.net/
FCKeditorWiki:http://wiki.fckeditor.net/
登录FCKeditor官方站(http://www.fckeditor.net),点击网站右上角“点击网站右上角”Download”链接。
作者在编写本文时FCKeditor目前最新的稳定版本是2.6.6,所以我们下载这个版本zip压缩格式文档。
FCKeditor2.6.6下载地址:
http://nchc.dl.sourceforge.net/project/fckeditor/FCKeditor/2.6.6/FCKeditor_2.6.6.zip
解压“FCKeditor_2.6.6.zip“文档到你的网站目录下,假设你先把它存起来FCKeditor和调用脚本存储在同一目录下。fckeditor目录包含FCKeditor2.4.3程序文件。check.php用于处理表单数据。add_article.php和add_article_js.html分别是PHP调用FCKeditor和JavaScript调用FCKeditor脚本文件的实例。
调用FCKeditor必须先载入FCKeditor类文件。具体代码如下。
<?php
include("fckeditor/fckeditor.php");//用于载入FCKeditor类文件
?>
接下来,我们需要创建FCKeditor实例、指定FCKeditor存储路径和创建#xff08;显示)编辑器等具体代码如下所示(代码通常放在表格中)。
<?php
$oFCKeditor=newFCKeditor('FCKeditor1&39;);//创建FCKeditor实例
$oFCKeditor->BasePath='https://blog.csdn.net/oemoon/article/details/fckeditor/';//设置FCKeditor目录地址