作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我正在尝试从文件夹中删除图像,但我收到此错误消息
Class 'App\Http\Controllers\File' not found
当我 dd()
图像路径时,它看起来像这样:"C:\xampp\htdocs\blog\public\/images/1544525527.jpg"
这是我的删除代码:
$post = Post::find($id);
$file= $post->image;
$destinationPath = public_path('/images');
$filename = $destinationPath.'/'.$file;
File::delete($filename);
然后我像这样上传图片:
if ($request->hasFile('image')) {
$image = $request->file('image');
$name = time().'.'.$image->getClientOriginalExtension();
$destinationPath = public_path('/images');
$image->move($destinationPath, $name);
$post->image = url('/public/images/').'/'.$name;
}
最佳答案
尝试在 Controller 文件的顶部导入类:
use Illuminate\Support\Facades\File;
关于php - 从数据库中删除文件或照片时如何从文件夹中删除它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53729935/
我是一名优秀的程序员,十分优秀!