0

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

5 Answers5

2

use unlink(). this function delete image.

Here is the official documentation page

Bhavik Shah
  • 2,300
  • 1
  • 17
  • 32
Ripa Saha
  • 2,532
  • 6
  • 27
  • 51
1

Simple use unlink('your image physical path/image name');

Tapas Pal
  • 7,073
  • 8
  • 39
  • 86
0

You can use unlink to delet the image.

$file = "images/*.jpg"
unlink($file);
Vinoth Babu
  • 6,724
  • 10
  • 36
  • 55
0

use unlink(). this function delete image.

Neel
  • 1
  • 1
0

$myFile = "testFile.txt"; unlink($myFile);

ajay
  • 1,560
  • 2
  • 13
  • 16