首页
开发手册
应用中心
工具
用户中心
FoundPHP 编辑器的应用
中文简体
中文简体
English
上一篇
下一篇
#### 什么是编辑器 在系统后台中,有些内容需要结合样式、图片一起存储,这时候就需要用到编辑器。常用编辑器有:MarkDownEditor、kindeditor、Ueditor。 ##### FoundPHP 使用编辑器 | 配置代码 | 编辑器名称 | | ------------ | ------------ | | mdeditor | MarkDownEditor | | kindeditor | kindeditor | | ueditor | Ueditor | ```php //在PHP程序中配置你需要的编辑器 $config['edit']['type'] = 'mdeditor'; ``` ##### FoundPHP 调用编辑器 | 配置代码 | 描述 | | ------------ | ------------ | | id | post接收名称 | | data | 默认加载值 | | width | 编辑器宽度 | | height | 编辑器高度 | | readonly | 只读状态 | | display | 值为:mini, 表示迷你版编辑器 | ```html
内容
{run:echo edit(array('id'=>'content','data'=>$content));}
```