我正在努力使用 CKEditor 使网站的 html 文件可编辑。我希望用户应该能够通过管理面板编辑任何 html 文件的代码。为此,我正在使用 file_get_contents 函数,该函数似乎工作正常,但 JavaScript 代码未在编辑器中显示为可编辑代码。我也尝试了 fread 函数,它还在编辑器中显示文件的所有内容,但我仍然无法将编辑器中的 JavaScript 代码作为可编辑代码。有什么帮助吗?
这是代码:
$contents = file_get_contents($_REQUEST['path']);
if(!$contents) die("Page not found");
$oFCKeditor = new FCKeditor('content') ;
$oFCKeditor->BasePath = 'fckeditor/' ;
$oFCKeditor->Width = '100%' ;
$oFCKeditor->Height = '350' ;
if($mode == 'edit')$oFCKeditor->Value = stripslashes($contents);
$oFCKeditor->Create() ;