我用的是最新版!
找到以下2个关键文件:
YourPath.../Ueditor/php/config.json
YourPath.../Ueditor/php/Uploader.class.php
config.json找到如下代码:
"imagePathFormat": "...(这里不用管)",//找到imagePathFormat所在行
Uploader.class.php找到如下方法:
private function getFilePath() {}
//打印你的 $rootPath = $_SERVER['DocumentRoot']; print_r($rootPath);
$rootPath.$fullname;//$fullname 就是 config.json中 imagePathFormat 对应的值,然后你结合自己打印得到的$rootPath,组合成自己的图片上传路径。