首页 > 网站 > 建站经验 > 正文

phpwind 9.X的OSS插件出现图片上传至OSS后本地仍有图片附件

2024-04-25 20:43:32
字体:
来源:转载
供稿:网友

打开 /src/extensions/ossStorage/service/app_ossStorage.php 文件

找到

public function save($source, $filePath) {

if (!$source || !$filePath || !$this->checkIfUploadToOss ()) return false;

$filePath = $this->configs['attachPath'] ? $this->configs['attachPath'].'/'.$filePath : $filePath;

$bool = $this->_uploadToOss($source, $filePath);

if(!$bool) return false;

return true;

}

把其中

if(!$bool) return false;

修改为

if(!$bool){

return false;

}

else{

WindFile::del($source);

}

提示:2015年1月9日前使用了9.X云存储(OSS For phpwind)插件的,请按照以上内容修改(之后的不用修改)

以上就是本文章的内容,希望对大家有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表