程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Smarty中調用FCKeditor的方法,smartyfckeditor

Smarty中調用FCKeditor的方法,smartyfckeditor

編輯:關於PHP編程

Smarty中調用FCKeditor的方法,smartyfckeditor


本文實例講述了Smarty中調用FCKeditor的方法,分享給大家供大家參考。具體實現方法如下:

FCKeditor是目前互聯網上最好的在線編輯器。

smarty是一個使用PHP寫出來的模板PHP模板引擎,它提供了邏輯與外在內容的分離,簡單的講,目的就是要使用PHP程序員同美工分離,使用的程序 員改變程序的邏輯內容不會影響到美工的頁面設計,美工重新修改頁面不會影響到程序的程序邏輯,這在多人合作的項目中顯的尤為重要。

在Smarty中調用FCKeditor的文件:

復制代碼 代碼如下:require_once("conn.php"); 
require_once("class/Smarty.class.php"); 
 
$smarty = new Smarty(); 
$smarty->template_dir = "../templates"; 
$smarty->compile_dir  = "../templates_c"; 
$smarty->left_delimiter = "<{"; 
$smarty->right_delimiter = "}>"; 
 
$editor = new FCKeditor("Content") ; 
$editor->BasePath   = "../FCKeditor/"; 
$editor->ToolbarSet = "Basic"; 
$editor->Value      = ""; 
$FCKeditor = $editor->CreateHtml(); 
 
$smarty->assign('Title',"Rossy is here waiting for you"); 
$smarty->assign('FCKeditor',$FCKeditor);   
$smarty->display('template.tpl');

但是運用這一種方法在編輯資料的時候竟然FCKeditor傳不了值,只是生成了一個空值的編輯器,所以只能換一種方法:

復制代碼 代碼如下:require_once("conn.php"); 
require_once("class/Smarty.class.php"); 
  
$smarty = new Smarty(); 
$smarty->template_dir = "../templates"; 
$smarty->compile_dir  = "../templates_c"; 
$smarty->left_delimiter = "<{"; 
$smarty->right_delimiter = "}>"; 
 
$editor = new FCKeditor("Content") ; 
$editor->BasePath   = "../FCKeditor/"; 
$editor->ToolbarSet = "Basic"; 
$editor->Value      = "Here is a example of smarty and FCKeditor"; 
 
$smarty->assign('Title',"Rossy is here waiting for you"); 
$smartyl->assign_by_ref("FCKeditor",$editor); 
$smarty->display('template.tpl');

模板文件template.tpl:

復制代碼 代碼如下:<htm> 
<head> 
<title>example of smarty use fckeditor</title> 
</head> 
 
<body> 
<P>Example</p> 
<p>title:<{$Title}></p> 
<p></p> 
<p>content:</p> 
<p><{$FCKeditor}></p> 
</body> 
</html>

希望本文所述對大家的PHP程序設計有所幫助。


php 怎使用fckeditor 在smarty模板中

建議使用EditorPHP,fckeditor我剛開始時也使用這個,但是有的服務器空間不支持msxml。我之前遇到過這種問題。所以就換成ewebeditor開發的PHP版本EditorPHP。這一種配置相對簡單。容易懂。如果你非要fckeditor ,可以參考下面的網址。
參考資料:hi.baidu.com/...2.html
 

smarty模版怎引用fckeditor編輯器

fckeditor調用方法不止php輸出一種方法
可以使用js方式
或者直接用生成後的html
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved