Laravel is a popular PHP framework that provides many useful functions to make developers more efficient and convenient during the development process. In many application development, we need to process images, which involves image uploading and deletion. This article will introduce how to delete images in a specified directory in the Laravel framework.
1. Laravel’s file storage method
In the Laravel framework, we can store and operate files through the storage engine. Laravel comes with a variety of storage engines, including:
In this article, we mainly introduce how to delete a directory in the local storage engine Pictures in .
2. Delete images in the local storage engine
Storage::path()
method, for example: $path = Storage::path('uploads/images/');
File::glob()
method to get all the files in the directory, and then filter to get the files in the specified format, for example: $files = File::glob($path . '*.jpg');
File::delete()
method to delete the specified picture, for example: foreach ($files as $file) { File::delete($file); }
use Illuminate\Support\Facades\File; use Illuminate\Support\Facades\Storage; $path = Storage::path('uploads/images/'); $files = File::glob($path . '*.jpg'); foreach ($files as $file) { File::delete($file); }
3. Summary
This article introduces the method of deleting images in the specified directory in the Laravel framework. By using the file operation methods provided by Laravel, we can easily delete files. At the same time, we can also choose other storage engines to operate files according to the actual situation. Hope this article is helpful to everyone.
The above is the detailed content of How to delete images in directory in laravel. For more information, please follow other related articles on the PHP Chinese website!