更新时未删除存储中的旧文件 Laravel

Old File from storage is not being deleted on update Laravel

我正在尝试在更新新图像时从存储中删除现有图像。 但是每次插入新图像时都会保留以前的图像。

当我从数据库中添加图像以取消链接时,我得到了完整的 url 即

http://127.0.0.1:8000/teacger-image/1598097262-85508.jpg

虽然只有 teacher-image/1598097262-85508.jpg 已存入数据库

删除图片的函数

public function deleteImageFromStorage($value)
{
    if (!empty($value)) {
        File::delete('public/' . $value);
    }
}

当更新过程中有图像发布时,我调用了控制器中的方法。

更新方法包括

 if ($request->hasFile('image')) {
            $teacher->deleteImageFromStorage($teacher->image);
            $file = $request->file('image');
            $filename =  time() . '-' . mt_rand(0, 100000) . '.' . $file->getClientOriginalExtension();
            $path = $file->storeAs('teacher-image', $filename);
            $teacher->image = $path;
        }

我也用过 Storage::delete()unlink,但其中 none 似乎有效。

帮助

我就是这样删除 Laravel 中的文件的。

use Illuminate\Http\Request;
use Illuminate\Support\Facades\Storage;

class ImagesController extends Controller
{
    public function deleteImageFromStorage($value)
    {
        if ( file_exists( storage_path($value) ) ) {
            Storage::delete($value);
        }
    }
}

确保使用 Illuminate\Support\Facades\Storage.

尝试将您的 deleteImageFromStorage 方法更改为:

public function deleteImageFromStorage($value)
{
    if (!empty($value)) {
        File::delete(public_path($value));
    }
}

我不得不这样做来解决我的问题。 url 被配置文件下 filesystems.php 上的配置所采用。

public function deleteImageFromStorage($value)
{
    $path_explode = explode('/', (parse_url($value))['path']); //breaking the full url 
    $path_array = [];
    array_push($path_array, $path_explode[2], $path_explode[3]); // storing the value of path_explode 2 and 3 in path_array array
    $old_image = implode('/', $path_array);

    if ($old_image) {
        Storage::delete($old_image);
    }
}

如果以后有人遇到同样的问题,这可能会有所帮助。