I want to delete image from folder after uploading .
I am first uploading resize image in folder and by using resize image I am cropping image and saving in other folder.
So after crop I want to delete image from resize folder
I want to delete image from folder after uploading .
I am first uploading resize image in folder and by using resize image I am cropping image and saving in other folder.
So after crop I want to delete image from resize folder
use unlink()
. this function delete image.
Here is the official documentation page
You can use unlink to delet the image.
$file = "images/*.jpg"
unlink($file);