在将php版本升级到PHP 5.4之前,我已成功运行FCKeditor。问题是编辑器无法显示阿拉伯语内容。它看起来是空的,FCKeditor只是出现英文版,这就是我如何调用编辑器:
<?php
include("editor/fckeditor.php") ;
$oFCKeditor = new FCKeditor('body') ;
$oFCKeditor->BasePath = 'editor/' ;
$oFCKeditor->Value = @$frm['body'] ;
$oFCKeditor->Width='573';
$oFCKeditor->Height='600';
?>
P.S。 fckeditor在数据库中成功存储阿拉伯语内容,问题是当我尝试编辑内容时。
以前有人遇到过这个问题吗?
答案 0 :(得分:0)
尝试在$oFCKeditor->Value
$oFCKeditor->Config['DefaultLanguage'] = 'ar';
$oFCKeditor->Config['AutoDetectLanguage'] = false;
注意如果您希望动态更改,那么您应该按照guidelines
更改您的方法