PHP unlink() Function

In the unlink function is used to remove a file from server and which function you can use to delete file and images from server.

In the unlink function have two parameter used that are string and filename. String Specifies to file path and file name Specifies to want delete file name.

Demo :



 
delete

Example :

If you need to delete image from in the above script click delete icon. Then immediately which script ask "Are you sure you want to delete this image" message. If you click yes button the image will be delete otherwise image will not delete from server.

Code :

Following code is use to unlink to image function if you need to copy and use to your website.


<?php
  if(file_exists("Path/".file_name) && (file_name!=''))
  {
    unlink("Path/".file_name);
    chmod("Path/".file_name,0777);
  }
?>

In the above example file_exists() function is used to check image available from server and unlink() function is used to delete an image from server and chmod() is used to give permission to image file.

Free Download Script :

If you need to unlink image function code click and download from following link.

Download




Content