>  기사  >  백엔드 개발  >  Smarty_php 예제에서 FCKeditor를 호출하는 방법

Smarty_php 예제에서 FCKeditor를 호출하는 방법

WBOY
WBOY원래의
2016-05-16 20:34:05967검색

이 글의 예시는 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:

코드 복사 코드는 다음과 같습니다. fckeditor를 현명하게 사용하는 예

제목:<{$Title}>



콘텐츠:


<{$FCKeditor}>


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