I would like to delete a file that is found in my localhost.
localhost/project/folder/file_to_delete
I\'m using codeigniter for this.
September 2018 this solution worked for me.
if(unlink(FCPATH . 'uploads/'.$filename)){ echo "Deleted"; }else{ echo "Found some error"; }