欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php调用fckeditor网络编辑器

程序员文章站 2022-05-28 10:05:42
...
php调用fckeditor网络编辑器
1.BasePath="../fckeditor/";  //编辑器所在目录 
5.$oFCKeditor->ToolbarSet="default";  //工具栏的名字 
6.$oFCKeditor->Height='350px';  //高度 
7.$oFCKeditor->Width='100%';  //宽度 
8.$oFCKeditor->Value="";  //初始值 
9.$myeditor=$oFCKeditor->CreateHtml();  //在要显示编缉器的地方输出变量$myeditor的值就行了 
10.?>

以上就是php调用fckeditor网络编辑器的内容,更多相关内容请关注PHP中文网(www.php.cn)!