14

我想删除在我的本地主机中找到的文件。

localhost/project/folder/file_to_delete

我为此使用了codeigniter。

我想在 php 中使用 unlink() 函数,但我真的不明白如何使用它。

4

9 回答 9

35

您可以在 codeigniter 中使用“文件助手”。

CodeIgniter v3: http ://codeigniter.com/userguide3/helpers/file_helper.html#delete_files

CodeIgniter v4:http ://codeigniter.com/user_guide/helpers/filesystem_helper.html#delete_files

像这样:

$this->load->helper("file");
delete_files($path);

后期编辑: delete_files方法使用路径来清除其所有内容unlink(),您可以在 CI 中执行相同操作。像这样:

unlink($path); 

一个有效的路径。

于 2012-03-17T06:46:18.897 回答
13

http://php.net/manual/en/function.unlink.php

这是最好的理解方式。阅读!

$path_to_file = '/project/folder/file_to_delete';
if(unlink($path_to_file)) {
     echo 'deleted successfully';
}
else {
     echo 'errors occured;
}
于 2012-03-17T06:41:50.827 回答
6

删除文件使用

unlink($file_name);

或删除目录使用

rmdir($dir);
于 2013-01-28T19:14:11.970 回答
4

试试这个,这对我有用:

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

例如:我将文件放在应用程序文件夹之外的上传文件夹中,我的文件名是 123.jpg。所以它应该是这样的:

unlink("./uploads/123.jpg");
于 2014-12-25T18:32:00.413 回答
2
$file = "test.txt";
if (!unlink($file))
  {
  echo ("Error deleting $file");
  }
else
  {
  echo ("Deleted $file");
  }
于 2012-03-17T06:43:19.287 回答
2

FCPATH在取消链接中使用。你可以尝试如下这对我有用:

$file_name = $SBLN_ROLL_NO."_ssc";
$file_ext = pathinfo($_FILES['ASSIGNMENT_FILE']['name'],PATHINFO_EXTENSION);

//File upload configuration
$config['upload_path'] = $upload_path;
$config['allowed_types'] = 'jpg|jpeg|png|gif|pdf';
$config['file_name'] = $file_name.'.'.$file_ext;

//First save the previous path for unlink before update
$temp = $this->utilities->findByAttribute('SKILL_DEV_ELEMENT', array('APPLICANT_ID'=>$STUDENT_PERSONAL_INFO->APPLICANT_ID, 'SD_ID'=>$SD_ID));

//Now Unlink
if(file_exists($upload_path.'/'.$temp->ELEMENT_URL))
{
    unlink(FCPATH . $upload_path.'/'.$temp->ELEMENT_URL);
}

//Then upload a new file
if($this->upload->do_upload('file'))
{
    // Uploaded file data
    $fileData = $this->upload->data();
    $file_name = $fileData['file_name'];
}
于 2018-11-18T13:58:20.733 回答
2

简单地可以使用:

$file = "uploads/my_test_file.txt";

if (is_readable($file) && unlink($file)) {
    echo "The file has been deleted";
} else {
    echo "The file was not found";
}
于 2019-04-09T21:55:14.220 回答
0

此代码还可以处理非空文件夹 - 只需在帮助程序中使用它。

if (!function_exists('deleteDirectory')) {
    function deleteDirectory($dir) {
    if (!file_exists($dir)) return true;
    if (!is_dir($dir) || is_link($dir)) return unlink($dir);
        foreach (scandir($dir) as $item) {
            if ($item == '.' || $item == '..') continue;
            if (!deleteDirectory($dir . "/" . $item)) {
                chmod($dir . "/" . $item, 0777);
                if (!deleteDirectory($dir . "/" . $item)) return false;
            };
        }
        return rmdir($dir);
    }
}
于 2012-03-17T17:33:59.467 回答
0

2018 年 9 月,这个解决方案对我有用。

if(unlink(FCPATH . 'uploads/'.$filename)){
    echo "Deleted";
}else{
    echo "Found some error";
}
于 2018-09-25T06:59:43.617 回答