当前位置:Gxlcms > PHP教程 > Smarty中调用FCKeditor的方法,smartyfckeditor_PHP教程

Smarty中调用FCKeditor的方法,smartyfckeditor_PHP教程

时间:2021-07-01 10:21:17 帮助过:10人阅读

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:

代码如下:

example of smarty use fckeditor



Example


title:<{$Title}>



content:


<{$FCKeditor}>



希望本文所述对大家的PHP程序设计有所帮助。


php 怎使用fckeditor 在smarty模板中

建议使用EditorPHP,fckeditor我刚开始时也使用这个,但是有的服务器空间不支持msxml。我之前遇到过这种问题。所以就换成ewebeditor开发的PHP版本EditorPHP。这一种配置相对简单。容易懂。如果你非要fckeditor ,可以参考下面的网址。
参考资料:hi.baidu.com/...2.html
 

smarty模版怎引用fckeditor编辑器

fckeditor调用方法不止php输出一种方法
可以使用js方式
或者直接用生成后的html
 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/901285.htmlTechArticleSmarty中调用FCKeditor的方法,smartyfckeditor 本文实例讲述了Smarty中调用FCKeditor的方法,分享给大家供大家参考。具体实现方法如下: FCKeditor是...

人气教程排行