FCKeditor for PHP 注意事項
最近在PHP要使用FCKeditor ,整合起來比JAVA太方便了
首先 要先去下載FCKeditor 小弟用的是2.6.3版本
在使用時,要先載入他的函式庫
然後參考php 的sample02.php code 要使用時只要照下面的寫法即可
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = $sBasePath ;
$oFCKeditor->Config['AutoDetectLanguage'] = false;
$oFCKeditor->Config['DefaultLanguage'] = 'zh' ; //繁體
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. ' ; //預設值
$oFCKeditor->Create() ;
?>
不過小弟不喜歡這種使用方式,他也有提供Javascript版本的,因為可以保留原本的textarea架構
以後要停用或抽換比較方便,所以小弟喜歡用這個方式來套用
<script>
var oFCKeditor;
window.onload = function()
{
var sBasePath = “fckeditor/”;
oFCKeditor = new FCKeditor( 'content', '100%', 300) ;
oFCKeditor.BasePath = sBasePath ;
oFCKeditor.ReplaceTextarea() ;
}
//–>
</script>
預設值就寫在原本的textarea 即可,所以自覺得更簡單方便囉!!
然後如果要採用他的圖片或檔案上傳功能,目前他對PHP也已經完全整合好了
所以使用超方便的,不像Java要另外找人寫的嵌入,要啟用上傳及瀏覽檔案功能
只要到 fckeditor\editor\filemanager\connectors\php\ 找到config.php檔案
將檔案內以下幾個參數值調整即可的
$Config['Enabled'] = true ;
//設定你要上傳的目錄,注意如果是linux 平台該目錄要開放可讀寫的權限才可以
$Config['UserFilesPath'] = '/userupload/'
這樣就完成啦,這麼好用的功能只要簡單調整幾個動作就可以完成整合
真是不錯用!!
近期留言