>  기사  >  백엔드 개발  >  PHP 페이지에서 fckeditor 편집기를 호출하는 방법

PHP 페이지에서 fckeditor 편집기를 호출하는 방법

高洛峰
高洛峰원래의
2016-11-30 10:24:431040검색

방금 포럼에서 어린이 신발을 공유하는 방법을 보았는데 그다지 포괄적이지 않은 것 같습니다.
코드 복사 코드는 다음과 같습니다.
PHP 페이지:
/* Editor*/
include_once "../include/fckeditor/fckeditor.php";//편집기 소개
$editor = new FCKeditor('content');//양식 항목 이름
$editor->BasePath = "/fckeditor/";//편집기가 위치한 디렉터리
$editor ->ToolbarSet = " Normal";//도구 모음 이름, 필요에 따라 다른 도구 모음을 로드할 수 있습니다.
$editor->Width = "95%";//Width
$editor ->Height = "250" ;//Height
$editor->Value = $content;//초기값
$fckeditor = $editor->CreateHtml();//변수 $ 출력 편집기를 표시하려는 fckeditor 값만
$tpl->ass('fckeditor', $fckeditor);//템플릿 할당

HTML 템플릿 페이지(저는 smarty를 사용합니다)
{%$fckeditor% }

일반 PHP 페이지 호출
content는 내가 정의한 변수 이름입니다.
$content =$_POST["content"]
추가:
< INPUT name="content " id="content" type=hidden>

페이지 수정:

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.