이 글의 예시는 Smarty에서 FCKeditor를 호출하는 방법을 설명하고 참고용으로 모든 사람과 공유됩니다. 구체적인 구현 방법은 다음과 같습니다.
FCKeditor는 현재 인터넷 최고의 온라인 편집자입니다.
smarty는 PHP로 작성된 템플릿 PHP 템플릿 엔진입니다. 간단히 말해서 PHP 프로그래머와 아티스트를 분리하고 프로그램의 논리를 변경하는 것이 목적입니다. 아티스트의 페이지 디자인에는 영향을 미치지 않으며, 아티스트의 페이지 재수정은 다중 사용자 협업 프로젝트에서 특히 중요한 프로그램 논리에 영향을 미치지 않습니다.
Smarty에서 FCKeditor를 호출하기 위한 파일:
require_once("conn.php")
require_once("class/Smarty.class.php")
$smarty = 새로운 스마티()
$smarty->template_dir = "../템플릿"
$smarty->compile_dir = "../templates_c"
$smarty->left_delimiter = "<{";
$smarty->right_delimiter = "}>"
$editor = new FCKeditor("콘텐츠")
$editor->BasePath = "../FCKeditor/"
$editor->ToolbarSet = "기본"
$editor->값 = ""
$FCKeditor = $editor->CreateHtml()
$smarty->할당('Title',"로시가 여기서 당신을 기다리고 있습니다.")
$smarty->할당('FCKeditor',$FCKeditor)
$smarty->display('template.tpl');
그러나 이 방법을 사용하여 데이터를 편집하는 경우 FCKeditor는 값을 전달할 수 없으며 null 값이 있는 편집기만 생성하므로 다른 방법만 사용할 수 있습니다:
require_once("conn.php")
require_once("class/Smarty.class.php")
$smarty = 새로운 스마티()
$smarty->template_dir = "../템플릿"
$smarty->compile_dir = "../templates_c"
$smarty->left_delimiter = "<{";
$smarty->right_delimiter = "}>"
$editor = new FCKeditor("콘텐츠")
$editor->BasePath = "../FCKeditor/"
$editor->ToolbarSet = "기본"
$editor->Value = "smarty와 FCKeditor의 예입니다."
$smarty->할당('Title',"로시가 여기서 당신을 기다리고 있습니다.")
$smartyl->asset_by_ref("FCKeditor",$editor)
$smarty->display('template.tpl');
템플릿 파일 template.tpl:
머리>
예
제목:<{$Title}>
콘텐츠:
<{$FCKeditor}>
본문>