要将PHP Wangeditor集成到项目中,请按照以下步骤操作:
下载Wangeditor源码包:访问 https://github.com/fex-team/wangeditor ,点击 “Code” 按钮,然后选择 “Download ZIP” 以下载最新版本的Wangeditor源码包。解压下载的压缩包,你将看到名为 wangeditor-x.x.x
的文件夹(其中x.x.x是版本号)。
将Wangeditor文件夹放入你的项目:将整个 wangeditor-x.x.x
文件夹复制到你的项目中的合适位置,例如创建一个名为 editor
的文件夹来存放Wangeditor相关文件。
创建PHP配置文件:在你的项目根目录下,创建一个名为 config.php
的文件。在此文件中,设置Wangeditor的相关配置,例如数据目录、图片URL前缀等。示例配置如下:
<?php
$config = [
'image_url_prefix' => 'https://your-domain.com/path/to/images/',
'scrawl_image_url_prefix' => 'https://your-domain.com/path/to/scrawl-images/',
'snapscreen_image_url_prefix' => 'https://your-domain.com/path/to/snapscreen-images/',
'catcher_image_url_prefix' => 'https://your-domain.com/path/to/catcher-images/',
'video_url_prefix' => 'https://your-domain.com/path/to/videos/',
'file_url_prefix' => 'https://your-domain.com/path/to/files/',
'image_manager_url' => 'editor/image_manager.php',
'file_manager_url' => 'editor/file_manager.php',
];
?>
your-domain.com
替换为你的实际域名,将 path/to/editor/
替换为你在第2步中存放Wangeditor文件夹的实际路径。<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Wangeditor Example</title>
<script type="text/javascript" src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script type="text/javascript" src="path/to/editor/wangeditor.min.js"></script>
</head>
<body>
<script type="text/javascript">
var E = window.wangEditor;
var editor = new E('#editor');
editor.create();
</script>
</body>
</html>
现在,你应该可以在浏览器中看到一个Wangeditor实例。你可以根据需要自定义编辑器的配置和功能。更多关于Wangeditor的信息和配置选项,请参考官方文档:https://github.com/fex-team/wangeditor 。