코드 복사 코드는 다음과 같습니다.
//FCKeditor 호출을 위한 함수 정의
function call_fck($input_name,$ input_value, $w='780',$h='580')
{
include_once 'fckeditor/fckeditor.php'
$fcked = new FCKeditor($input_name)
$fcked -> ;BasePath = 'fckeditor/';
$fcked->ToolbarSet = 'Simple' ; //도구 모음 설정
$fcked->InstanceName = $input_name
$fcked-> = $w;
$fcked->높이 = $h;
$fcked->값 = $input_value; $fck_area = $fcked->CreateHtml(); - >smarty->할당('fck_area',$fck_area)
unset($fck_area)
unset($fcked)