如何在php页面中集成CKEditor 4

如何在php页面中集成CKEditor 4,ckeditor,Ckeditor,如何在php页面中集成CKEditor 4?我查看了类似的主题,例如,但在提取zip文件时,没有名为ckeditor.php的文件。目前没有用于ckeditor v4的php连接器,因为有些功能仍在等待从v3移植。一些人报告说,v3连接器成功集成到v4中,因此您可以随时尝试并使用源代码 请参阅“了解更多信息”示例表单: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <

如何在php页面中集成CKEditor 4?我查看了类似的主题,例如,但在提取zip文件时,没有名为ckeditor.php的文件。

目前没有用于ckeditor v4的php连接器,因为有些功能仍在等待从v3移植。一些人报告说,v3连接器成功集成到v4中,因此您可以随时尝试并使用源代码

请参阅“了解更多信息”示例表单:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>A Simple Page with CKEditor</title>
    <!-- Make sure the path to CKEditor is correct. -->
    <script src="../ckeditor.js"></script>
</head>
<body>
    <form>
        <textarea name="editor1" id="editor1" rows="10" cols="80">
            This is my textarea to be replaced with CKEditor.
        </textarea>
        <script>
            // Replace the <textarea id="editor1"> with a CKEditor
            // instance, using default configuration.
            CKEDITOR.replace( 'editor1' );
        </script>
    </form>
</body>
</html>