コードをコピーします コードは次のとおりです:
//FCKeditorを呼び出す関数を定義します
function call_fck($input_name,$input_value,$w='780',$h='580')
{
include_once 'fckeditor/fckeditor.php';
$fcked = new FCKeditor($input_name) ;
$fcked->ToolbarSet = 'Simple';ツールバーの設定
$fcked->インスタンス名 = $input_name;
$fcked->高さ = $h; = $ fcked->CreateHtml();
$this->smarty->assign('fck_area',$fck_area)
;
http://www.bkjia.com/PHPjc/319538.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/319538.html
技術記事次のようにコードをコピーします。 //FCKeditor を呼び出す関数を定義します function call_fck($input_name,$input_value,$w='780',$h='580') { include_once 'fckeditor/fckeditor.php'; ..