1. PHP는 fckeditor 메소드를 호출합니다.
2. JS는 fckeditor 메소드를 호출합니다.
코드 복사 코드는 다음과 같습니다.
require_once(PATH_PRE."fckeditor.php "); // fckeditor 클래스를 포함합니다.
$oFCKeditor = new FCKeditor('content'); //fckeditor 객체를 생성합니다. 양식 이름은 content
$oFCKeditor->BasePath="입니다. ./fckeditor/"; //편집기가 위치한 디렉토리
$oFCKeditor->ToolbarSet=”Yiyunnet”; //기본 편집기 도구 모음에는 Basic(기본 도구) Default(모든 도구) Soft(이미지 및 동영상은 한 열에 삽입 가능) Renpeng (사진과 동영상은 두 열에 업로드 가능) 전체(3열)
$oFCKeditor->Height='100%' //Height
$oFCKeditor-> ;Width='100%'; //Width
$oFCKeditor->Value=""; //초기값에는 다음 부분도 설정할 수 있습니다("=" 부분은 포함됨).
$oFCKeditor->Config['SkinPath'] = './editor/skins/silver/'; // 편집기 스킨 기본값을 설정하는 데는 세 가지 스킨이 있습니다.
$oFCKeditor->Create(); // 편집기를 표시하려는 변수 $myeditor의 값을 출력합니다.
코드 복사 코드는 다음과 같습니다.
<스크립트 유형 ="text/javascript">
var oFCKeditor = new FCKeditor( 'Content' ) ;
oFCKeditor.BasePath = 'fckeditor/' ;
oFCKeditor.ToolbarSet = 'Basic' ; Width = '100%' ;
oFCKeditor.Height = '400′ ;
oFCKeditor.Value = “ Code
코드는 다음과 같습니다.
< script src=”fckeditor/fckeditor.js”>
위 내용은 ueditor 컨텐츠를 포함하여 ueditor php에서 fckeditor 편집기를 설치하고 구성하는 방법을 소개하고 있으니 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.