国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > PHP > 正文

Smarty中調用FCKeditor的方法

2024-05-04 23:26:25
字體:
來源:轉載
供稿:網友
這篇文章主要介紹了Smarty中調用FCKeditor的方法,對比常見的錯誤方法講述了Smarty中調用FCKeditor的實現過程,是非常實用的技巧,需要的朋友可以參考下
 
 

本文實例講述了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程序設計有所幫助。


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 金乡县| 甘德县| 武冈市| 炎陵县| 双柏县| 徐闻县| 广饶县| 天气| 天柱县| 庆元县| 枞阳县| 孟津县| 炎陵县| 武强县| 贵德县| 石首市| 托克托县| 扎赉特旗| 巴林右旗| 安仁县| 威信县| 含山县| 隆子县| 阿拉善盟| 黎川县| 独山县| 崇左市| 鲁甸县| 年辖:市辖区| 布尔津县| 商洛市| 蒲城县| 平江县| 西华县| 宝山区| 美姑县| 清原| 商都县| 罗田县| 孝昌县| 松阳县|