Deleting a File using php/codeigniter

前端 未结 9 1969
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-04 07:47

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.

9条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-04 08:25

    Try this, this works for me:

    unlink("./path/to/folder/file_name_do_delete");
    

    for example: I put my file inside uploads folder which is outside the application folder and my file name is 123.jpg. So it should be like this:

    unlink("./uploads/123.jpg");
    

提交回复
热议问题