Deleting a File using php/codeigniter

前端 未结 9 1953
爱一瞬间的悲伤
爱一瞬间的悲伤 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:26

    $file = "test.txt";
    if (!unlink($file))
      {
      echo ("Error deleting $file");
      }
    else
      {
      echo ("Deleted $file");
      }
    

提交回复
热议问题