欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

PHP集成FCK的函數(shù)代碼

 更新時間:2008年09月27日 18:05:14   作者:  
定義一個函數(shù)用于調(diào)用FCKeditor ,用php寫成一個函數(shù),方便調(diào)用

復(fù)制代碼 代碼如下:

//定義一個函數(shù)用于調(diào)用FCKeditor
function call_fck($input_name,$input_value,$w='780',$h='580')
{
include_once 'fckeditor/fckeditor.php';
$fcked = new FCKeditor($input_name) ;
$fcked->BasePath = 'fckeditor/';
$fcked->ToolbarSet = 'Simple' ; //工具欄設(shè)置
$fcked->InstanceName = $input_name ;
$fcked->Width = $w;
$fcked->Height = $h;
$fcked->Value = $input_value;

$fck_area = $fcked->CreateHtml();
$this->smarty->assign('fck_area',$fck_area);
unset($fck_area) ;
unset($fcked) ;
}

相關(guān)文章

最新評論